{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDrillingRig/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconDrillingRig: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconDrillingRig\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.1838 2.29509C11.3329 2.18079 11.6178 2 12 2C12.3822 2 12.6671 2.18079 12.8162 2.29509C12.9831 2.42293 13.1225 2.57781 13.2347 2.722C13.4615 3.0137 13.671 3.38464 13.8479 3.7737C14.1973 4.54234 14.5 5.56192 14.5 6.5C14.5 7.88071 13.3807 9 12 9C10.6193 9 9.5 7.88071 9.5 6.5C9.5 5.56192 9.80275 4.54234 10.1521 3.7737C10.329 3.38464 10.5385 3.0137 10.7653 2.722C10.8775 2.57781 11.0169 2.42293 11.1838 2.29509ZM11.9729 4.6013C11.6972 5.20766 11.5 5.93808 11.5 6.5C11.5 6.77614 11.7239 7 12 7C12.2761 7 12.5 6.77614 12.5 6.5C12.5 5.93808 12.3027 5.20766 12.0271 4.6013C12.0181 4.58138 12.009 4.5618 12 4.54256C11.991 4.5618 11.9819 4.58138 11.9729 4.6013Z\" fill=\"currentColor\"/><Path d=\"M20 20V22H4V20H6.1802L7.92803 11.2608L10.7194 14.75L6.51938 20H9.08063L12 16.3508L14.9194 20H17.4806L13.2806 14.75L16.072 11.2608L17.8198 20H20Z\" fill=\"currentColor\"/><Path d=\"M12 13.1492L9.48063 10H14.5194L12 13.1492Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconDrillingRig;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAAuiC,EAAviC,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mpBAAmpB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mJAAmJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6CAA6C,KAAK,eAAc,CAAI,EAC/iC,EAEc",
  "debugId": "D9B0151043AEA39C64756E2164756E21",
  "names": []
}