UNPKG

@sjsf/shadcn-theme

Version:

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

8 lines (7 loc) 369 B
import { RadioGroup as RadioGroupPrimitive, type WithoutChildrenOrChild } from "bits-ui"; type $$ComponentProps = WithoutChildrenOrChild<RadioGroupPrimitive.ItemProps> & { value: string; }; declare const RadioGroupItem: import("svelte").Component<$$ComponentProps, {}, "ref">; type RadioGroupItem = ReturnType<typeof RadioGroupItem>; export default RadioGroupItem;