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