{
  "mappings": "AAIA,cAAc,iBAAiB;KAqB1B,iBAAiB,SAAS,cAAc,IAAI;AAEjD,OAAO,cAAM,QAAQ",
  "names": [],
  "sources": [
    "src/icons/BugOff.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 BugOff: IconComponent = themed(\n  memo(function BugOff(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=\"M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2\" stroke={color} />\n        <Path d=\"M14.12 3.88 16 2\" stroke={color} />\n        <Path d=\"M22 13h-4v-2a4 4 0 0 0-4-4h-1.3\" stroke={color} />\n        <Path d=\"M20.97 5c0 2.1-1.6 3.8-3.5 4\" stroke={color} />\n        <Path d=\"m2 2 20 20\" stroke={color} />\n        <Path d=\"M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13\" stroke={color} />\n        <Path d=\"M12 20v-8\" 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      </Svg>\n    )\n  })\n)\n"
  ]
}