UNPKG

@sjsf/shadcn4-theme

Version:

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

9 lines (8 loc) 344 B
import type { Component } from 'svelte'; import type { CheckboxRootProps, WithoutChildrenOrChild } from 'bits-ui'; export type CheckboxProps = WithoutChildrenOrChild<CheckboxRootProps>; declare module '../context.js' { interface ThemeComponents { Checkbox: Component<CheckboxProps, {}, 'checked' | 'indeterminate' | 'ref'>; } }