carbon-react
Version:
A library of reusable React components for easily building user interfaces.
30 lines (29 loc) • 870 B
TypeScript
import { TooltipPositions } from "../tooltip/tooltip.config";
import { IconType } from "./icon-type";
import { BackgroundShape, BgSize, FontSize } from "./icon.style";
declare const dlsConfig: {
backgroundSize: {
"extra-small": string;
small: string;
medium: string;
large: string;
"extra-large": string;
};
backgroundShape: {
square: string;
"rounded-rect": string;
circle: string;
};
iconSize: {
small: string;
medium: string;
large: string;
"extra-large": string;
};
};
export declare const ICON_TOOLTIP_POSITIONS: TooltipPositions[];
export declare const ICON_SHAPES: BackgroundShape[];
export declare const ICON_SIZES: BgSize[];
export declare const ICON_FONT_SIZES: FontSize[];
export declare const ICONS: IconType[];
export default dlsConfig;