{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconOrange/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 IconOrange: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconOrange\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.2668 3.25432C12.732 2.42959 13.4174 1.71408 14.2967 1.20642C15.7903 0.344102 17.9609 0.300888 19.4007 0.864768C19.4007 2.67095 18.2117 4.42912 16.6873 5.31558C19.2738 6.89661 21 9.74677 21 13.0001C21 17.9707 16.9706 22.0001 12 22.0001C7.02944 22.0001 3 17.9707 3 13.0001C3 8.57445 6.1944 4.89488 10.4033 4.14131C9.86933 3.57829 9.02129 3.09532 7.91102 2.99614L8.08897 1.00407C9.88752 1.16474 11.3987 2.06668 12.2668 3.25432ZM15.6737 3.59144C16.1478 3.31773 16.5328 2.94974 16.8189 2.52438C16.2555 2.53878 15.7735 2.66317 15.2967 2.93847C14.805 3.22234 14.4091 3.60762 14.12 4.05314C14.6504 4.02553 15.182 3.87532 15.6737 3.59144ZM12.8273 17.6785C14.7867 17.3349 16.3348 15.7868 16.6784 13.8274L18.6483 14.1728C18.1592 16.9618 15.9617 19.1594 13.1727 19.6484L12.8273 17.6785Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconOrange;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAk6B,EAAl6B,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6wBAA6wB,KAAK,eAAc,CAAI,EAC16B,EAEc",
  "debugId": "205DCE8274635A0064756E2164756E21",
  "names": []
}