ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 344 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface CheckboxIndicatorProps extends HtmlIngredientProps<'div', HTMLDivElement> {
}
declare const CheckboxIndicator: import("svelte").Component<CheckboxIndicatorProps, {}, "ref">;
type CheckboxIndicator = ReturnType<typeof CheckboxIndicator>;
export default CheckboxIndicator;