UNPKG

norma-library

Version:

Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.

9 lines (8 loc) 171 B
import { ReactNode } from 'react'; export type CardBaseProps = { children: ReactNode; title?: string; }; export type CardHeaderBaseProps = { title: string; };