lore-ui
Version:
Package used to perform Lore stylization.
13 lines (12 loc) • 633 B
TypeScript
import { ColorBase } from '../colors';
import { IconBase } from '../icons';
export declare const COLOR_DEFAULT: import("../colors").HexadecimalColor;
export declare const ICON_SIZE_DEFAULT = 98;
export declare const checkDuplicateKeysAndHexadecimals: (data: ColorBase | IconBase, type?: string) => {
duplicateHexValues: string[];
duplicateKeyValues: string[];
};
export declare const createHexadecimalColorType: () => string;
export declare const isValidColor: (color: string) => boolean;
export declare const toBase64: (svgContent: string) => Promise<string>;
export declare const toCamelCase: (fileName: string) => string;