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