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