(isDark: boolean)
| 132 | } |
| 133 | |
| 134 | export function mapV2Semantics(isDark: boolean): Record<string, V2ColorValue> { |
| 135 | return isDark ? dark : light |
| 136 | } |
| 137 | |
| 138 | export function mergeV2Tokens(...layers: Record<string, V2ColorValue>[]): Record<string, V2ColorValue> { |
| 139 | return Object.assign({}, ...layers) |
no outgoing calls
no test coverage detected