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