UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 336 B
import type { HtmlIngredientProps } from '../types.js'; export interface FileUploadLabelProps extends HtmlIngredientProps<'label', HTMLLabelElement> { } declare const FileUploadLabel: import("svelte").Component<FileUploadLabelProps, {}, "ref">; type FileUploadLabel = ReturnType<typeof FileUploadLabel>; export default FileUploadLabel;