import React from 'react'; type ChevronPosition = 'left' | 'right' | 'down' | 'up'; type ChevronIconProps = { width?: number; height?: number; color?: string; position?: ChevronPosition; }; const DIRECTION = { left: 90, right: -90, down: 0, up: -180, }; export const ChevronIcon = ({ width = 18, height = 18, color = '#5D5D6B', position = 'down', }: ChevronIconProps) => ( );