flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
20 lines (19 loc) • 646 B
TypeScript
import { ClassList, PropsOf, Signal, JSXOutput } from '@builder.io/qwik';
import { OptionsType } from './select-types';
import { InputSize, ValidationStatus } from '../../index';
type SelectProps = PropsOf<'select'> & {
label?: string;
'bind:value': Signal<string>;
options: OptionsType[];
class?: ClassList;
placeholder?: string;
disabled?: boolean;
underline?: boolean;
sizing?: InputSize;
validationStatus?: ValidationStatus;
validationMessage?: JSXOutput;
helper?: JSXOutput;
onChange$?: () => void;
};
export declare const Select: import("@builder.io/qwik").Component<SelectProps>;
export {};