UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 416 B
import type { HighlightWordProps } from '@zag-js/highlight-word'; import type { Assign, HtmlIngredientProps } from '../types.js'; export interface HighlightProps extends Assign<Omit<HtmlIngredientProps<'div', HTMLDivElement>, 'children'>, HighlightWordProps> { } declare const Highlight: import("svelte").Component<HighlightProps, {}, "ref">; type Highlight = ReturnType<typeof Highlight>; export default Highlight;