import React from 'react'; const ChevronDownIcon: React.FC<{ size?: number }> = ({ size = 24 }) => { return ( ); }; export default ChevronDownIcon;