import React from 'react'; import { IconProps } from './types'; export const ChevronRight = React.memo(({ size = 16, className, ...props }) => { return ( ); }); ChevronRight.displayName = 'ChevronRight'; export default ChevronRight;