{
  "mappings": "AAIA,cAAc,iBAAiB;KAqB1B,iBAAiB,SAAS,cAAc,IAAI;AAEjD,OAAO,cAAM,WAAW",
  "names": [],
  "sources": [
    "src/icons/Microchip.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 Microchip: IconComponent = themed(\n  memo(function Microchip(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=\"M18 12h2\" stroke={color} />\n        <Path d=\"M18 16h2\" stroke={color} />\n        <Path d=\"M18 20h2\" stroke={color} />\n        <Path d=\"M18 4h2\" stroke={color} />\n        <Path d=\"M18 8h2\" stroke={color} />\n        <Path d=\"M4 12h2\" stroke={color} />\n        <Path d=\"M4 16h2\" stroke={color} />\n        <Path d=\"M4 20h2\" stroke={color} />\n        <Path d=\"M4 4h2\" stroke={color} />\n        <Path d=\"M4 8h2\" stroke={color} />\n        <Path\n          d=\"M8 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1.5c-.276 0-.494.227-.562.495a2 2 0 0 1-3.876 0C9.994 2.227 9.776 2 9.5 2z\"\n          stroke={color}\n        />\n      </Svg>\n    )\n  })\n)\n"
  ]
}