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