UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 311 B
import type { HtmlIngredientProps } from '../types.js'; export interface DrawerTitleProps extends HtmlIngredientProps<'h2', HTMLHeadingElement> { } declare const DrawerTitle: import("svelte").Component<DrawerTitleProps, {}, "ref">; type DrawerTitle = ReturnType<typeof DrawerTitle>; export default DrawerTitle;