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