Card
Last updated: 2.0.0 (21/01/2024)
Usage
import { Card, Text, IconButton } from "@valence-ui/core";
import { Icon123 } from "@tabler/icons-react";
function MyComponent() {
return (
<Card>
<Card.Image
src="https://image.src"
alt="A random image"
/>
<Card.Section>
<Text>
Card text content!
</Text>
</Card.Section>
<Card.Buttons>
<IconButton>
<Icon123 />
</IconButton>
</Card.Buttons>
</Card>
)
}Props
Property
Type
Description
CardImageProps
Property
Type
Description
CardSectionProps
CardButtonsProps
Last updated