import * as React from 'react' import Svg, { Path } from 'react-native-svg' import colors from 'src/styles/colors' interface Props { size?: number color?: string } const GearIcon = ({ size = 24, color = colors.contentPrimary }: Props) => ( ) export default GearIcon