svelisy
Version:
svelisy - DaisyUI components built with Svelte 🌼
6 lines (5 loc) • 350 B
TypeScript
import type { IComponentBaseProps } from '../../types';
import type { HTMLAttributes } from 'svelte/elements';
export type TContentProps = HTMLAttributes<HTMLDivElement> & IComponentBaseProps;
export type TOverlayProps = HTMLAttributes<HTMLDivElement> & IComponentBaseProps;
export type TProps = HTMLAttributes<HTMLDivElement> & IComponentBaseProps;