ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 328 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface TimerSeparatorProps extends HtmlIngredientProps<'span', HTMLSpanElement> {
}
declare const TimerSeparator: import("svelte").Component<TimerSeparatorProps, {}, "ref">;
type TimerSeparator = ReturnType<typeof TimerSeparator>;
export default TimerSeparator;