UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 342 B
import type { HtmlIngredientProps } from '../types.js'; export interface AlertDescriptionProps extends HtmlIngredientProps<'p', HTMLParagraphElement> { } declare const AlertDescription: import("svelte").Component<AlertDescriptionProps, {}, "ref">; type AlertDescription = ReturnType<typeof AlertDescription>; export default AlertDescription;