UNPKG

ds-smart-ui

Version:

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

12 lines (11 loc) 290 B
export interface BoxProps { children?: React.ReactNode; className?: string; p?: number; m?: number; shadow?: string; rounded?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"; id?: string; } declare const Box: React.FC<BoxProps>; export default Box;