{
  "mappings": "AAIA,cAAc,iBAAiB;KAqB1B,iBAAiB,SAAS,cAAc,IAAI;AAEjD,OAAO,cAAM,WAAW",
  "names": [],
  "sources": [
    "src/icons/Biohazard.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 Biohazard: IconComponent = themed(\n  memo(function Biohazard(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        <_Circle cx=\"12\" cy=\"11.9\" r=\"2\" stroke={color} />\n        <Path d=\"M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6\" stroke={color} />\n        <Path d=\"m8.9 10.1 1.4.8\" stroke={color} />\n        <Path d=\"M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5\" stroke={color} />\n        <Path d=\"m15.1 10.1-1.4.8\" stroke={color} />\n        <Path\n          d=\"M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2\"\n          stroke={color}\n        />\n        <Path d=\"M12 13.9v1.6\" stroke={color} />\n        <Path d=\"M13.5 5.4c-1-.2-2-.2-3 0\" stroke={color} />\n        <Path d=\"M17 16.4c.7-.7 1.2-1.6 1.5-2.5\" stroke={color} />\n        <Path d=\"M5.5 13.9c.3.9.8 1.8 1.5 2.5\" stroke={color} />\n      </Svg>\n    )\n  })\n)\n"
  ]
}