svelisy
Version:
svelisy - DaisyUI components built with Svelte 🌼
9 lines (8 loc) • 343 B
TypeScript
import type { IComponentBaseProps, ComponentColor, ComponentSize } from '../../types';
import type { HTMLAttributes } from 'svelte/elements';
export type TProps = Omit<HTMLAttributes<HTMLDivElement>, 'color'> & IComponentBaseProps & {
variant?: 'outline';
size?: ComponentSize;
color?: ComponentColor;
responsive?: boolean;
};