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.

13 lines (12 loc) 473 B
import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; import { type ClassValue } from 'tailwind-variants'; type Props = Omit<HTMLAttributes<HTMLDivElement>, 'class'> & { class?: ClassValue; children?: Snippet; center?: Snippet; right?: Snippet; }; declare const DataTableToolbar: import("svelte").Component<Props, {}, "">; type DataTableToolbar = ReturnType<typeof DataTableToolbar>; export default DataTableToolbar;