dgz-ui-shared
Version:
Custom ui library using React.js, Shadcn/ui, TailwindCSS, Typescript, dgz-ui library
15 lines • 550 B
TypeScript
/**
* Props for the ThemeToggle component.
*/
export interface ThemeToggleProps {
/** Optional className passed to the trigger button. */
className?: string;
}
/**
* ThemeToggle provides a dropdown to switch between Light, Dark, and System themes.
*
* @param className - Optional className passed to the trigger button.
* @returns {JSX.Element} A dropdown menu to switch themes.
*/
export declare function ThemeToggle({ className }: ThemeToggleProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=theme-toggle.d.ts.map