UNPKG

@start-base/start-ui

Version:

<p align="center"> <a href="https://startbase.dev" target="_blank"> <img src="https://startbase.dev/apple-touch-icon.png" width="60px" style="padding-top: 60px" /> </a> </p>

16 lines (12 loc) 432 B
import React$1 from 'react'; interface CardProps { title?: string | React.ReactNode; description?: string | React.ReactNode; collapsible?: boolean; size?: 'small' | 'medium' | 'large'; fluid?: boolean; className?: string; children: React.ReactNode; } declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>; export { type CardProps, Card as default };