UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 326 B
import type { HtmlIngredientProps } from '../types.js'; export interface FieldErrorTextProps extends HtmlIngredientProps<'div', HTMLDivElement> { } declare const FieldErrorText: import("svelte").Component<FieldErrorTextProps, {}, "ref">; type FieldErrorText = ReturnType<typeof FieldErrorText>; export default FieldErrorText;