| 3 | import { HtmlDataAttribute } from "#/enum"; |
| 4 | import type { UILibraryAdapter } from "./type"; |
| 5 | interface ThemeProviderProps { |
| 6 | children: React.ReactNode; |
| 7 | adapters?: UILibraryAdapter[]; |
| 8 | } |
| 9 | |
| 10 | export function ThemeProvider({ children, adapters = [] }: ThemeProviderProps) { |
| 11 | const { themeMode, themeColorPresets, fontFamily, fontSize } = useSettings(); |
nothing calls this directly
no outgoing calls
no test coverage detected