UNPKG

svelisy

Version:

svelisy - DaisyUI components built with Svelte 🌼

7 lines (6 loc) • 290 B
import type { ComponentColor, ComponentSize, IComponentBaseProps } from '../../types'; import type { HTMLInputAttributes } from 'svelte/elements'; export type TInputProps = Omit<HTMLInputAttributes, 'size'> & IComponentBaseProps & { size?: ComponentSize; color?: ComponentColor; };