UNPKG

@cn-ui/core

Version:

The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.

6 lines (5 loc) 268 B
import "./Switch.css"; export interface SwitchBtnProps { onSwitch?: (state: boolean, e: Event) => void; } export declare const SwitchBtn: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<SwitchBtnProps, HTMLInputElement, boolean>>;