@fuxui/base
Version:
ui kit - svelte 5 + tailwind 4 - base components
13 lines (12 loc) • 409 B
TypeScript
import { Toolbar, type WithoutChildrenOrChild } from 'bits-ui';
type Item = {
label: string;
value: string;
} | string;
type $$ComponentProps = WithoutChildrenOrChild<Toolbar.RootProps> & {
selected?: string;
items: Item[];
};
declare const Select: import("svelte").Component<$$ComponentProps, {}, "ref" | "items" | "selected">;
type Select = ReturnType<typeof Select>;
export default Select;