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.

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