| 11 | import { cx } from "@/utils/cx"; |
| 12 | |
| 13 | interface RootContextProps { |
| 14 | size?: "sm" | "md" | "lg"; |
| 15 | } |
| 16 | |
| 17 | const RootContext = createContext<RootContextProps>({ size: "lg" }); |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected