UNPKG

@conductionnl/nl-design-system

Version:

NL design system components created by Conduction

14 lines (13 loc) 290 B
/// <reference types="react" /> import "../../style/switch.css"; interface SwitchProps { id: string; name: string; } /** * This components renders a switch. * * @returns JSX of the generated Switch. */ export declare function Switch(props: SwitchProps): JSX.Element; export {};