import React from 'react' import { BaseIcon, BaseIconDefaultProps, Icon } from '../_utils/icon' export enum ChevronIconDirections { DOWN = 'DOWN', UP = 'UP', LEFT = 'LEFT', } export type ChevronIconProps = Icon & Readonly<{ direction?: ChevronIconDirections }> export const ChevronIcon = ({ direction, ...props }: ChevronIconProps) => ( ) ChevronIcon.defaultProps = { ...BaseIconDefaultProps, direction: null, }