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