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