import { forwardRef } from 'react'; import type { IconProps } from './types'; export const ChevronDown = forwardRef(function ChevronDown( { color = 'currentColor', ...props }, ref, ) { return ( ); });