import { type FC, HTMLProps, Ref } from "react"; import { ColorName, ColorShade } from "../../Foundations"; import { iconNames } from "./iconNames"; export type IconName = (typeof iconNames)[number] | string; export interface BlokIconProps extends HTMLProps { icon: IconName; classes?: Array; tagName?: "i" | "em"; label?: string; iconColor?: ColorName | "inherit"; iconColorShade?: ColorShade; iconBackgroundColor?: ColorName | "inherit"; iconBackgroundColorShade?: ColorShade; iconSize?: "default" | "small" | "extraSmall"; ignoreIconOverride?: boolean; fontSize?: string; ref?: Ref; } export declare const BlokIcon: FC; //# sourceMappingURL=BlokIcon.d.ts.map