ui-ingredients
Version:
Headless component library for Svelte powered by zag
9 lines (8 loc) • 449 B
TypeScript
import type { ItemProps } from '@zag-js/steps';
import type { Action } from 'svelte/action';
import type { Assign, HtmlIngredientProps } from '../types.js';
export interface StepsContentProps extends Assign<HtmlIngredientProps<'div', HTMLDivElement, never, Action>, ItemProps> {
}
declare const StepsContent: import("svelte").Component<StepsContentProps, {}, "ref">;
type StepsContent = ReturnType<typeof StepsContent>;
export default StepsContent;