UNPKG

@itgold/grandbazar-ui-kit

Version:

Grandbazar.io UI component library: React, Typescript, Tailwind, Rollup, Storybook, Jest.

4 lines (3 loc) 282 B
import { TCheckboxProps } from '@/components/input/types/TCheckboxProps'; export type TToggleProps = Omit<TCheckboxProps, 'size' | 'type'>; export declare function Toggle({ disabled, theme, onChange, id, className, checked }: TToggleProps): import("react/jsx-runtime").JSX.Element;