svelisy
Version:
svelisy - DaisyUI components built with Svelte 🌼
12 lines (11 loc) • 596 B
TypeScript
import type { IComponentBaseProps } from '../../types';
import type { HTMLAttributes } from 'svelte/elements';
export declare const windowMockupColors: readonly ["base-100", "base-200", "base-300", "neutral", "primary", "secondary", "accent", "info", "success", "warning", "error"];
type TWindowMockupColors = (typeof windowMockupColors)[number];
export type TProps = Omit<HTMLAttributes<HTMLDivElement>, 'color'> & IComponentBaseProps & {
frameColor?: TWindowMockupColors;
backgroundColor?: TWindowMockupColors;
border?: boolean;
borderColor?: TWindowMockupColors;
};
export {};