(_strings: TemplateStringsArray)
| 2 | import { ThemeSystem } from "./theme"; |
| 3 | |
| 4 | export const css = (_strings: TemplateStringsArray): string => { |
| 5 | throw Error('Using the "css" in runtime is not supported.'); |
| 6 | }; |
| 7 | |
| 8 | export const cx = (...classNames: (string | false | null | undefined)[]) => |
| 9 | classNames.filter((className) => Boolean(className)).join(" "); |
no outgoing calls
no test coverage detected