import React from 'react'; import Icon, { IconProps } from './Icon'; export const AngleDown: React.FC = ({ width = '16px', height = '16px', className }) => { return ( ); }; type Props = { width?: number | string; height?: number | string; color?: string; }; const AngleDownOld = ({ width, height, color }: Props) => { return ( ); }; AngleDownOld.defaultProps = { width: 24, height: 16, color: '#000', }; export default AngleDownOld;