A Card component.
import { Main, Card } from '@aragon/ui' function App() { return ( <Main> <Card>Card content</Card> </Main> ) }
width
Type: String
String
Default: 282px
282px
Set the width of your card in pixels.
height
Default: 322px
322px
Set the height of your card in pixels.
Last updated 3 years ago
Was this helpful?
const MyCard = () => ( <Card width="500px">{/* Your card's content goes here */}</Card> )
const MyCard = () => ( <Card height="800px">{/* Your card's content goes here */}</Card> )