Files
outline/app/components/Avatar/Avatar.js
2017-10-25 22:49:04 -07:00

11 lines
157 B
JavaScript

// @flow
import styled from 'styled-components';
const Avatar = styled.img`
width: 24px;
height: 24px;
border-radius: 50%;
`;
export default Avatar;