svelisy
Version:
svelisy - DaisyUI components built with Svelte 🌼
10 lines (9 loc) • 395 B
TypeScript
import type { ComponentSize, IComponentBaseProps } from '../../types';
import type { HTMLAttributes, HTMLInputAttributes } from 'svelte/elements';
export type TRatingItemProps = HTMLInputAttributes & IComponentBaseProps;
export type TRatingProps = HTMLAttributes<HTMLDivElement> & IComponentBaseProps & {
size?: ComponentSize;
half?: boolean;
hidden?: boolean;
value: number;
};