{
  "mappings": "AAIA,cAAc,iBAAiB;KAqB1B,iBAAiB,SAAS,cAAc,IAAI;AAEjD,OAAO,cAAM,KAAK",
  "names": [],
  "sources": [
    "src/icons/Cog.tsx"
  ],
  "version": 3,
  "sourcesContent": [
    "// @ts-nocheck\nimport React, { memo } from 'react'\nimport PropTypes from 'prop-types'\nimport type { NamedExoticComponent } from 'react'\nimport type { IconProps } from '@tamagui/helpers-icon'\nimport {\n  Svg,\n  Circle as _Circle,\n  Ellipse,\n  G,\n  LinearGradient,\n  RadialGradient,\n  Line,\n  Path,\n  Polygon,\n  Polyline,\n  Rect,\n  Symbol,\n  Text as _Text,\n  Use,\n  Defs,\n  Stop,\n} from 'react-native-svg'\nimport { themed } from '@tamagui/helpers-icon'\n\ntype IconComponent = (propsIn: IconProps) => JSX.Element\n\nexport const Cog: IconComponent = themed(\n  memo(function Cog(props: IconProps) {\n    const { color = 'black', size = 24, ...otherProps } = props\n    return (\n      <Svg\n        width={size}\n        height={size}\n        viewBox=\"0 0 24 24\"\n        fill=\"none\"\n        stroke={color}\n        strokeWidth=\"2\"\n        strokeLinecap=\"round\"\n        strokeLinejoin=\"round\"\n        {...otherProps}\n      >\n        <Path d=\"M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z\" stroke={color} />\n        <Path d=\"M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\" stroke={color} />\n        <Path d=\"M12 2v2\" stroke={color} />\n        <Path d=\"M12 22v-2\" stroke={color} />\n        <Path d=\"m17 20.66-1-1.73\" stroke={color} />\n        <Path d=\"M11 10.27 7 3.34\" stroke={color} />\n        <Path d=\"m20.66 17-1.73-1\" stroke={color} />\n        <Path d=\"m3.34 7 1.73 1\" stroke={color} />\n        <Path d=\"M14 12h8\" stroke={color} />\n        <Path d=\"M2 12h2\" stroke={color} />\n        <Path d=\"m20.66 7-1.73 1\" stroke={color} />\n        <Path d=\"m3.34 17 1.73-1\" stroke={color} />\n        <Path d=\"m17 3.34-1 1.73\" stroke={color} />\n        <Path d=\"m11 13.73-4 6.93\" stroke={color} />\n      </Svg>\n    )\n  })\n)\n"
  ]
}