UNPKG

ds-smart-ui

Version:

Smart UI is a React component library that helps you build accessible and responsive web applications.

14 lines (12 loc) 382 B
import { CSSProperties, HTMLAttributes } from 'react'; interface CardProps extends HTMLAttributes<HTMLDivElement> { children: React.ReactNode; className?: string; elevation?: 0 | 1 | 2 | 3 | 4; rounded?: "none" | "sm" | "md" | "lg"; outlined?: boolean; style?: CSSProperties; id?: string; } declare const Card: React.FC<CardProps>; export default Card;