UNPKG

compote-ui

Version:

An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.

9 lines (8 loc) 340 B
import type { DrawerTitleBaseProps } from '@ark-ui/svelte/drawer'; import type { ClassValue } from 'svelte/elements'; interface Props extends DrawerTitleBaseProps { class?: ClassValue; } declare const DrawerTitle: import("svelte").Component<Props, {}, "">; type DrawerTitle = ReturnType<typeof DrawerTitle>; export default DrawerTitle;