UNPKG

svelisy

Version:

svelisy - DaisyUI components built with Svelte 🌼

8 lines (7 loc) • 353 B
import type { ComponentStatus, IComponentBaseProps } from '../../types'; import type { HTMLAttributes } from 'svelte/elements'; export type TProps = HTMLAttributes<HTMLDivElement> & IComponentBaseProps; export type TLineProps = HTMLAttributes<HTMLPreElement> & IComponentBaseProps & { dataPrefix?: boolean | string; status?: ComponentStatus; };