A Card component.
import { Main, Card } from '@aragon/ui'
function App() {
return (
<Main>
<Card>Card content</Card>
</Main>
)
}
Set the width of your card in pixels.
const MyCard = () => (
<Card width="500px">{/* Your card's content goes here */}</Card>
)
Set the height of your card in pixels.
const MyCard = () => (
<Card height="800px">{/* Your card's content goes here */}</Card>
)