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.
11 lines (10 loc) • 462 B
TypeScript
import type { CollapsibleIndicatorBaseProps } from '@ark-ui/svelte/collapsible';
import type { Snippet } from 'svelte';
import type { ClassValue } from 'svelte/elements';
interface Props extends CollapsibleIndicatorBaseProps {
class?: ClassValue;
children?: Snippet;
}
declare const CollapsibleIndicator: import("svelte").Component<Props, {}, "">;
type CollapsibleIndicator = ReturnType<typeof CollapsibleIndicator>;
export default CollapsibleIndicator;