UNPKG

svelisy

Version:

svelisy - DaisyUI components built with Svelte 🌼

10 lines (9 loc) • 395 B
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; };