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