mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 21:41:57 +00:00
12 lines
141 B
TypeScript
12 lines
141 B
TypeScript
type Color =
|
|
| 'primary'
|
|
| 'secondary'
|
|
| 'accent'
|
|
| 'neutral'
|
|
| 'info'
|
|
| 'success'
|
|
| 'warning'
|
|
| 'error';
|
|
|
|
export { Color };
|