import React, { SVGProps } from 'react'; import classnames from 'classnames'; // @ts-ignore import styles from './ChevronIcon.less'; interface ChevronSvgProps extends SVGProps { direction?: 'down' | 'up' | 'left' | 'right'; size?: number; } export default ({ direction = 'down', size = 24, ...props }: ChevronSvgProps) => ( );