A card component that acts as a link.
1234567891011121314123456789101112131415161718192021222324252627282930123456789101112131412345678910111213141234567891011121314151617181920212223242526| Component | Prop | Type | Default | Description |
|---|---|---|---|---|
LinkCard | href | string | — | URL to navigate to (required) |
LinkCard | icon | LucideIcon | — | Icon component from lucide-react (required) |
LinkCard | title | string | — | Card title (required) |
LinkCard | description | string | — | Card description (required) |
LinkCard | variant | "solid" | "outline" | "solid" | Visual variant of the card |
LinkCard | external | boolean | false | Whether the link opens in a new tab |
LinkCard | className | string | — | Additional CSS classes |
LinkCardGroup | cards | Omit<LinkCardProps, "className">[] | — | Array of LinkCard items (required) |
LinkCardGroup | columns | { sm?: number; md?: number; lg?: number } | { sm: 1, md: 2, lg: 3 } | Number of columns on different breakpoints |
LinkCardGroup | className | string | — | Additional CSS classes |