svelisy
Version:
svelisy - DaisyUI components built with Svelte 🌼
9 lines (8 loc) • 345 B
TypeScript
import type { ComponentColor, ComponentPosition, IComponentBaseProps } from '../../types';
import type { HTMLAttributes } from 'svelte/elements';
export type TProps = Omit<HTMLAttributes<HTMLDivElement>, 'color'> & IComponentBaseProps & {
message: string;
open?: boolean;
color?: ComponentColor;
position?: ComponentPosition;
};