import React from 'react'; import { IElementProps } from '../Element'; import * as icons from './icons'; export declare type IconNames = keyof typeof icons; declare type IconProps = React.SVGAttributes & IElementProps & { /** name of the icon */ name: IconNames; /** title for accessibility */ title?: string; /** Size of the icon, the button is set to 26x26 */ size?: number; /** icon color */ color?: string; }; export declare const Icon: React.FC; export {};