ui-ingredients
Version:
Headless component library for Svelte powered by zag
8 lines (7 loc) • 449 B
TypeScript
import type { ActionTriggerProps } from '@zag-js/timer';
import type { Assign, HtmlIngredientProps } from '../types.js';
export interface TimerActionTriggerProps extends Assign<HtmlIngredientProps<'button', HTMLButtonElement>, ActionTriggerProps> {
}
declare const TimerActionTrigger: import("svelte").Component<TimerActionTriggerProps, {}, "ref">;
type TimerActionTrigger = ReturnType<typeof TimerActionTrigger>;
export default TimerActionTrigger;