svelisy
Version:
svelisy - DaisyUI components built with Svelte 🌼
17 lines (16 loc) • 487 B
TypeScript
import type { IComponentBaseProps } from '../../types';
import type { HTMLAttributes } from 'svelte/elements';
export declare const horizontalOptions: {
start: string;
center: string;
end: string;
};
export declare const verticalOptions: {
top: string;
middle: string;
bottom: string;
};
export type TProps = HTMLAttributes<HTMLDivElement> & IComponentBaseProps & {
horizontal?: keyof typeof horizontalOptions;
vertical?: keyof typeof verticalOptions;
};