-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
163b68e
commit f76a735
Showing
3 changed files
with
46 additions
and
53 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
browser-extension/plugin/src/ui-components/atoms/SlurCardComponent.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from 'react' | ||
import SlurCardBubble from './SlurCardBubble'; | ||
import { | ||
Card, CardBody, CardFooter, CardHeader, List, | ||
Text, | ||
Box, | ||
Button, | ||
Anchor, | ||
} from 'grommet'; | ||
|
||
|
||
const SlurCardComponent = ({ data }) => { | ||
return ( | ||
<Card flex={true} background="#FFE5B4"> | ||
<CardHeader pad="medium">Header</CardHeader> | ||
<CardBody pad="medium">Body</CardBody> | ||
</Card> | ||
) | ||
} | ||
|
||
export default SlurCardComponent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters