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.
18 lines (15 loc) • 642 B
text/typescript
import { SxProps } from '@mui/material';
import { Theme } from '@emotion/react';
import { ColorVariant, MuiTagBaseProps } from '../types';
import { OverridableStringUnion } from '@mui/types';
export interface ChipPropsColorOverrides {}
export interface ChipPropsSizeOverrides {}
export interface TagBaseProps extends MuiTagBaseProps {
label?: React.ReactNode | String;
sx?: SxProps<Theme>;
avatar?: React.ReactElement;
outlined?: Boolean;
size?: OverridableStringUnion<'small' | 'medium', ChipPropsSizeOverrides>;
color?: OverridableStringUnion<ColorVariant, ChipPropsColorOverrides>;
onClose?: React.ReactEventHandler<{}>;
}