svelisy
Version:
svelisy - DaisyUI components built with Svelte 🌼
11 lines (10 loc) • 434 B
TypeScript
import type { ComponentColor, IComponentBaseProps } from '../../types';
import type { HTMLAttributes, HTMLLiAttributes } from 'svelte/elements';
export type TProps = HTMLAttributes<HTMLUListElement> & IComponentBaseProps & {
vertical?: boolean;
horizontal?: boolean;
};
export type TStepProps = Omit<HTMLLiAttributes, 'value' | 'color'> & IComponentBaseProps & {
value?: string;
color?: 'neutral' | ComponentColor;
};