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