UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

9 lines (8 loc) 457 B
import type { ItemProps } from '@zag-js/pagination'; import type { Merge } from 'type-fest'; import type { HtmlIngredientProps } from '../types.js'; export interface PaginationItemProps extends Merge<HtmlIngredientProps<'button', HTMLButtonElement>, Omit<ItemProps, 'type'>> { } declare const PaginationItem: import("svelte").Component<PaginationItemProps, {}, "ref">; type PaginationItem = ReturnType<typeof PaginationItem>; export default PaginationItem;