Personal-site/components/Avatar.js

18 lines
357 B
JavaScript
Raw Normal View History

2020-06-14 11:47:02 +00:00
import React from "react";
import styles from "./modules/Avatar.module.css";
2020-06-14 14:45:20 +00:00
import PropTypes from "prop-types";
2020-06-14 11:47:02 +00:00
export default function Avatar(props) {
return (
<img
2020-06-14 14:45:20 +00:00
className={styles[props.size]}
2020-06-14 11:47:02 +00:00
src="/images/bongo.png"
alt="The one and only bongo cat!"
/>
);
}
2020-06-14 14:45:20 +00:00
Avatar.propTypes = {
size: PropTypes.string.isRequired,
};