| 8 | } |
| 9 | |
| 10 | export interface ICreateTheme { |
| 11 | primary: string; |
| 12 | secondary: string; |
| 13 | textBase: string; |
| 14 | } |
| 15 | |
| 16 | export function createTheme({ primary, secondary, textBase }: ICreateTheme) { |
| 17 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected