UNPKG

@ucam/design-system

Version:
14 lines (13 loc) 367 B
import { FC } from 'react'; interface ThemeChangerProps { /** * If set, then the ThemeChanger will set a theme the first time it runs */ initialValue?: string; } /** * A dropdown picker to select a theme. * Must be used inside a `<ThemeProvider />`. */ declare const ThemeChanger: FC<ThemeChangerProps>; export default ThemeChanger;