@dvcol/neo-svelte
Version:
Neomorphic ui library for svelte 5
14 lines (13 loc) • 523 B
TypeScript
import type { NeoIconButtonProps } from './neo-icon-button.model.js';
import type { Color } from '../utils/colors.utils.js';
export declare const NeoCloseButtonSize: {
readonly Small: "sm";
readonly Medium: "md";
readonly Large: "lg";
};
export type NeoCloseButtonSizes = (typeof NeoCloseButtonSize)[keyof typeof NeoCloseButtonSize];
export interface NeoCloseButtonProps extends NeoIconButtonProps {
hoverColor?: Color | CSSStyleDeclaration['color'];
size?: NeoCloseButtonSizes;
inline?: boolean;
}