UNPKG

svelisy

Version:

svelisy - DaisyUI components built with Svelte 🌼

7 lines (6 loc) • 283 B
import type { IComponentBaseProps, ComponentStatus } from '../../types'; import type { HTMLAttributes } from 'svelte/elements'; export type TProps = Omit<HTMLAttributes<HTMLDivElement>, 'color'> & IComponentBaseProps & { status?: ComponentStatus; innerClassName?: string; };