import * as React from 'react'; import withIconSvg from '../helpers/withIconSvg'; /** * Note: need to export to avoid error in Icons namespace. */ export interface ISvgProps { className?: string, } const Icon: React.FC = (props) => ( ); export default withIconSvg( Icon, true, { tags: [ 'arrow', 'chevron', 'right', ], }, );