UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 304 B
import type { HtmlIngredientProps } from '../types.js'; export interface AlertTitleProps extends HtmlIngredientProps<'span', HTMLSpanElement> { } declare const AlertTitle: import("svelte").Component<AlertTitleProps, {}, "ref">; type AlertTitle = ReturnType<typeof AlertTitle>; export default AlertTitle;