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) 342 B
import type { CarouselItemProps } from '@ark-ui/svelte/carousel'; import type { Snippet } from 'svelte'; type $$ComponentProps = CarouselItemProps & { children?: Snippet; }; declare const CarouselItem: import("svelte").Component<$$ComponentProps, {}, "">; type CarouselItem = ReturnType<typeof CarouselItem>; export default CarouselItem;