ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 310 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface DialogTitleProps extends HtmlIngredientProps<'span', HTMLSpanElement> {
}
declare const DialogTitle: import("svelte").Component<DialogTitleProps, {}, "ref">;
type DialogTitle = ReturnType<typeof DialogTitle>;
export default DialogTitle;