UNPKG

svelisy

Version:

svelisy - DaisyUI components built with Svelte 🌼

20 lines (19 loc) • 697 B
import type { ComponentSize, IComponentBaseProps, ComponentShape, ComponentColor } from '../../types'; import type { HTMLAttributes } from 'svelte/elements'; type TRounded = ComponentSize | 'xl' | '2xl' | 'full'; export type TProps = Omit<HTMLAttributes<HTMLDivElement>, 'color'> & IComponentBaseProps & { src?: string; letters?: string; size?: ComponentSize | number; shape?: ComponentShape; color?: ComponentColor; border?: boolean; borderColor?: ComponentColor; online?: boolean; offline?: boolean; rounded?: TRounded; }; export type TGroupProps = Omit<HTMLAttributes<HTMLDivElement>, 'color'> & IComponentBaseProps & { space?: number; }; export {};