source: src/components/label/types.ts

main
Last change on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 481 bytes
Line 
1import { BoxProps } from '@mui/material/Box';
2
3// ----------------------------------------------------------------------
4
5export type LabelColor =
6 | 'default'
7 | 'primary'
8 | 'secondary'
9 | 'info'
10 | 'success'
11 | 'warning'
12 | 'error';
13
14export type LabelVariant = 'filled' | 'outlined' | 'soft';
15
16export interface LabelProps extends BoxProps {
17 startIcon?: React.ReactElement | null;
18 endIcon?: React.ReactElement | null;
19 color?: LabelColor;
20 variant?: LabelVariant;
21}
Note: See TracBrowser for help on using the repository browser.