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 = (props: ISvgProps) => ( ); export default withIconSvg(Icon, true, { tags: ['arrow', 'chevron', 'down'], });