Person.jsx 204 B

12345678910
  1. function Person(props) {
  2. const {size} = props;
  3. return <img width={size} height={size} src="/icons/person.png" alt="Person icon" />
  4. }
  5. Person.defaultProps = {
  6. size: 24
  7. }
  8. export default Person