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.
19 lines (16 loc) • 455 B
text/typescript
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[];
}