mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
13 lines
194 B
TypeScript
13 lines
194 B
TypeScript
export type Color =
|
|
| 'primary'
|
|
| 'secondary'
|
|
| 'accent'
|
|
| 'neutral'
|
|
| 'info'
|
|
| 'success'
|
|
| 'warning'
|
|
| 'error'
|
|
| 'none';
|
|
|
|
export type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|