UNPKG

react-vite-themes

Version:

A test/experimental React theme system created for learning purposes. Features atomic design components, SCSS variables, and dark/light theme support. Not intended for production use.

19 lines 620 B
import React from 'react'; import type { Variant } from '../../../types/colors'; import './Checkbox.scss'; export interface CheckboxProps { checked?: boolean; defaultChecked?: boolean; onChange?: (checked: boolean) => void; disabled?: boolean; label?: string; labelPosition?: 'left' | 'right'; size?: 'sm' | 'md' | 'lg'; variant?: Variant; id?: string; name?: string; className?: string; indeterminate?: boolean; } export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>; //# sourceMappingURL=Checkbox.d.ts.map