{
  "mappings": "AAIA,cAAc,iBAAiB;KAqB1B,iBAAiB,SAAS,cAAc,IAAI;AAEjD,OAAO,cAAM,KAAK",
  "names": [],
  "sources": [
    "src/icons/Bug.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 Bug: IconComponent = themed(\n  memo(function Bug(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=\"m8 2 1.88 1.88\" stroke={color} />\n        <Path d=\"M14.12 3.88 16 2\" stroke={color} />\n        <Path d=\"M9 7.13v-1a3.003 3.003 0 1 1 6 0v1\" stroke={color} />\n        <Path\n          d=\"M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6\"\n          stroke={color}\n        />\n        <Path d=\"M12 20v-9\" stroke={color} />\n        <Path d=\"M6.53 9C4.6 8.8 3 7.1 3 5\" stroke={color} />\n        <Path d=\"M6 13H2\" stroke={color} />\n        <Path d=\"M3 21c0-2.1 1.7-3.9 3.8-4\" stroke={color} />\n        <Path d=\"M20.97 5c0 2.1-1.6 3.8-3.5 4\" stroke={color} />\n        <Path d=\"M22 13h-4\" stroke={color} />\n        <Path d=\"M17.2 17c2.1.1 3.8 1.9 3.8 4\" stroke={color} />\n      </Svg>\n    )\n  })\n)\n"
  ]
}