flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
10 lines (9 loc) • 392 B
TypeScript
import { QRL, PropsOf, JSXChildren } from '@builder.io/qwik';
import { FlowbiteTheme } from '../FlowbiteThemable';
type CheckboxProps = Omit<PropsOf<'input'>, 'children'> & {
color?: FlowbiteTheme;
onChange$?: QRL<(checked: boolean, value: string) => void>;
children?: JSXChildren;
};
export declare const Checkbox: import("@builder.io/qwik").Component<CheckboxProps>;
export {};