UNPKG

@sjsf/shadcn4-theme

Version:

The shadcn-svelte based theme for svelte-jsonschema-form

9 lines (8 loc) 400 B
import { Select as SelectPrimitive } from "bits-ui"; import { type WithoutChild } from "../../../utils.js"; type $$ComponentProps = WithoutChild<SelectPrimitive.ContentProps> & { portalProps?: SelectPrimitive.PortalProps; }; declare const SelectContent: import("svelte").Component<$$ComponentProps, {}, "ref">; type SelectContent = ReturnType<typeof SelectContent>; export default SelectContent;