import React, { FC } from 'react' import { IconInner } from './IconInner' interface IFeatherIcon { icon: string, size: string | number, className: string, fill: string, otherProps: any } /** * Feather icon * otherProps spread will be removed in version 1. * @param {icon} icon name that matches from feathericons * @returns FeatherIcon react component */ const FeatherIcon : FC = (props : IFeatherIcon) => { const { icon, size = 24, className = '', fill = 'none', otherProps } = props if (!icon) { return null } return ( ) } export { FeatherIcon }