(light: T, dark: T)
| 79 | export type Styles = GlobalStyles & JSXElementStyles |
| 80 | |
| 81 | export function mode<T>(light: T, dark: T) { |
| 82 | return (props: Dict | StyleFunctionProps) => |
| 83 | props.colorMode === "dark" ? dark : light |
| 84 | } |
| 85 | |
| 86 | export function orient(options: { |
| 87 | orientation?: "vertical" | "horizontal" |
no outgoing calls
no test coverage detected
searching dependent graphs…