function Knife(props) { const {size} = props; return <img width={size} height={size} src="/icons/knife.png" alt="Knife icon" /> } Knife.defaultProps = { size: 24 } export default Knife