import React from "react";
import { Avatar as RMDAvatar } from "react-md";

/**
 * This component lets you display an Avatar icon on the page
 * @param {object} props The props
 * @returns {function} The component
 */
const Avatar = props => <RMDAvatar {...props} />;

export default Avatar;
