import * as React from 'react' import colors from 'src/styles/colors' import Svg, { Path } from 'svgs' interface Props { height?: number color?: string } const Refresh = ({ color, height }: Props) => ( ) Refresh.defaultProps = { height: 16, color: colors.contentPrimary, } export default Refresh