import { FunctionComponent } from 'react'; import { IProps } from '../_common/props'; interface IIcon extends IProps { width?: number; height?: number; viewBoxWidth?: number; viewBoxHeight?: number; } /** * All SVG icons are based on 24x24 viewbox * It can be adjusted by passing the width and height props * or a CSS class */ declare const BaseIcon: FunctionComponent; export { BaseIcon as default, IIcon }; //# sourceMappingURL=BaseIcon.d.ts.map