UNPKG

@dariobrozzi/c64-design-system

Version:

A vintage Design System inspired on Commodore interface

8 lines (7 loc) 268 B
export interface SwitchProps { checked: boolean; label?: string; onChange?: (checked: boolean) => void; } export declare const Switch: ({ checked, label, onChange, ...props }: SwitchProps) => import("react/jsx-runtime").JSX.Element; export default Switch;