mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 21:41:57 +00:00
15 lines
268 B
TypeScript
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';
|