import * as React from 'react' import Svg, { Path } from 'react-native-svg' import Colors, { ColorValue } from 'src/styles/colors' interface Props { color?: ColorValue size?: number } export default function User({ color = Colors.contentPrimary, size = 24 }: Props) { return ( ) }