{
  "mappings": "AAIA,cAAc,iBAAiB;KAqB1B,iBAAiB,SAAS,cAAc,IAAI;AAEjD,OAAO,cAAM,SAAS",
  "names": [],
  "sources": [
    "src/icons/BugPlay.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 BugPlay: IconComponent = themed(\n  memo(function BugPlay(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\n          d=\"M12.765 21.522a.5.5 0 0 1-.765-.424v-8.196a.5.5 0 0 1 .765-.424l5.878 3.674a1 1 0 0 1 0 1.696z\"\n          stroke={color}\n        />\n        <Path d=\"M14.12 3.88 16 2\" stroke={color} />\n        <Path\n          d=\"M18 11a4 4 0 0 0-4-4h-4a4 4 0 0 0-4 4v3a6.1 6.1 0 0 0 2 4.5\"\n          stroke={color}\n        />\n        <Path d=\"M20.97 5c0 2.1-1.6 3.8-3.5 4\" stroke={color} />\n        <Path d=\"M3 21c0-2.1 1.7-3.9 3.8-4\" stroke={color} />\n        <Path d=\"M6 13H2\" stroke={color} />\n        <Path d=\"M6.53 9C4.6 8.8 3 7.1 3 5\" stroke={color} />\n        <Path d=\"m8 2 1.88 1.88\" stroke={color} />\n        <Path d=\"M9 7.13v-1a3.003 3.003 0 1 1 6 0v1\" stroke={color} />\n      </Svg>\n    )\n  })\n)\n"
  ]
}