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.

17 lines (16 loc) 471 B
import { SxProps } from '@mui/material'; import { Theme } from '@emotion/react'; import { ColorVariant, MuiTimeLineBaseProps, PositionVariant } from '../types'; export type DataTimeLine = { id?: string; title: string; data: string; by: string; }; export interface TimeLineBaseProps extends MuiTimeLineBaseProps { position?: PositionVariant; children?: React.ReactNode; sx?: SxProps<Theme>; color: ColorVariant; data: DataTimeLine[]; }