| 1 | export interface ColourOption { |
| 2 | readonly value: string; |
| 3 | readonly label: string; |
| 4 | readonly color: string; |
| 5 | readonly isFixed?: boolean; |
| 6 | readonly isDisabled?: boolean; |
| 7 | } |
| 8 | |
| 9 | export const colourOptions: readonly ColourOption[] = [ |
| 10 | { value: 'ocean', label: 'Ocean', color: '#00B8D9', isFixed: true }, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…