ui-ingredients
Version:
Headless component library for Svelte powered by zag
10 lines (9 loc) • 418 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
interface IndicatorState {
copied: boolean;
}
export interface ClipboardIndicatorProps extends HtmlIngredientProps<'span', HTMLSpanElement, IndicatorState> {
}
declare const ClipboardIndicator: import("svelte").Component<ClipboardIndicatorProps, {}, "ref">;
type ClipboardIndicator = ReturnType<typeof ClipboardIndicator>;
export default ClipboardIndicator;