svelte-settings
Version:
> [!WARNING] > This project is a work in progress. Do not use it in any of your projects yet.
9 lines (8 loc) • 382 B
TypeScript
import { Select as SelectPrimitive } from "bits-ui";
import { type WithoutChild } from "../../../utils.js";
type $$ComponentProps = WithoutChild<SelectPrimitive.TriggerProps> & {
size?: "sm" | "default";
};
declare const SelectTrigger: import("svelte").Component<$$ComponentProps, {}, "ref">;
type SelectTrigger = ReturnType<typeof SelectTrigger>;
export default SelectTrigger;