@engie-group/fluid-design-system-react
Version:
Fluid Design System React
40 lines (29 loc) • 920 B
text/typescript
// @deprecated, only used in [Deprecated]NJAlert
export type TDeprecatedVariants = 'danger' | 'warning' | 'success';
export type TBrandVariants = 'brand';
export type TNeutralVariants = 'neutral';
export type TTypeVariants = 'primary' | 'secondary' | 'destructive' | 'inverse';
export type TEmphasisVariants = 'bold' | 'subtle' | 'minimal';
export type TSemanticVariants =
| 'danger'
| 'warning'
| 'success'
| 'information'
| 'discovery'
| 'planet';
export type TBreakPoints = 'sm' | 'md' | 'lg' | 'xl';
export type TColorVariants =
| 'grey'
| 'blue'
| 'teal'
| 'pink'
| 'orange'
| 'red'
| 'green'
| 'ultramarine'
| 'yellow'
| 'purple'
| 'lime';
export type TNeutralExtendedSemanticVariants = TNeutralVariants | TSemanticVariants;
export type TBrandExtendedColorVariants = TBrandVariants | TColorVariants;
export type TSizeVariants = '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';