UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

8 lines (7 loc) 519 B
type AnimationType = "none" | "circle-spread" | "round-morph" | "swipe-left" | "swipe-up" | "diag-down-right" | "fade-in-out" | "shrink-grow" | "flip-x-in" | "split-vertical" | "swipe-right" | "swipe-down" | "wave-ripple"; interface ToggleThemeProps extends React.ComponentPropsWithoutRef<"button"> { duration?: number; animationType?: AnimationType; } export declare const ToggleTheme: ({ className, duration, animationType, ...props }: ToggleThemeProps) => import("react/jsx-runtime").JSX.Element; export {};