import * as React from 'react' import colors from 'src/styles/colors' import Svg, { Path } from 'svgs' export interface Props { size?: number color?: string } function Share({ color = colors.accent, size = 32 }: Props) { return ( ) } export default React.memo(Share)