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) 347 B
import type { PopoverTitleBaseProps } from '@ark-ui/svelte/popover'; import type { ClassValue } from 'svelte/elements'; interface Props extends PopoverTitleBaseProps { class?: ClassValue; } declare const PopoverTitle: import("svelte").Component<Props, {}, "">; type PopoverTitle = ReturnType<typeof PopoverTitle>; export default PopoverTitle;