Files
lti-web-client/src/types/theme.d.ts
T

15 lines
268 B
TypeScript

export type Color =
| 'primary'
| 'secondary'
| 'accent'
| 'neutral'
| 'info'
| 'success'
| 'warning'
| 'error'
| 'none';
export type Variant = 'default' | 'outline' | 'ghost' | 'soft' | 'dash';
export type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl';