@fuxui/base
Version:
ui kit - svelte 5 + tailwind 4 - base components
9 lines (8 loc) • 342 B
TypeScript
import { Select, type WithoutChildren } from "bits-ui";
type Props = Select.RootProps & {
placeholder?: string;
contentProps?: WithoutChildren<Select.ContentProps>;
};
declare const SelectChildren: import("svelte").Component<Props, {}, "value">;
type SelectChildren = ReturnType<typeof SelectChildren>;
export default SelectChildren;