import React from 'react' import { BaseIcon, BaseIconDefaultProps, Icon } from '../_utils/icon' export type ArrowIconProps = Icon & Readonly<{ right?: boolean }> export const ArrowIcon = ({ right, ...props }: ArrowIconProps) => ( ) ArrowIcon.defaultProps = { ...BaseIconDefaultProps, right: false, }