UNPKG

shadcn-react

Version:
11 lines (10 loc) 335 B
/// <reference types="react" /> export interface CardProps { title?: React.ReactNode; description?: React.ReactNode; footer?: React.ReactNode; children?: React.ReactNode; className?: string; style?: React.CSSProperties; } export declare function Card(props: CardProps): import("react/jsx-runtime").JSX.Element;