{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRewrite/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 IconRewrite: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconRewrite\"><Path d=\"M5.50061 5.0719C7.19922 3.4778 9.48562 2.5 12.0006 2.5C15.1593 2.5 17.9578 4.04258 19.6835 6.41114L20.2723 7.21938L18.6558 8.39709L18.067 7.58885C16.7016 5.71475 14.493 4.5 12.0006 4.5C9.78011 4.5 7.78457 5.46435 6.41025 7H9.50071V9H3.50061L3.50062 3L5.50062 3L5.50061 5.0719Z\" fill=\"currentColor\"/><Path d=\"M4.55202 12.8836L4.43562 11.8904L2.44922 12.1232L2.56562 13.1164C2.93568 16.2742 4.85215 18.955 7.53328 20.386L8.4155 20.8568L9.35719 19.0924L8.47498 18.6216C6.35446 17.4898 4.84353 15.371 4.55202 12.8836Z\" fill=\"currentColor\"/><Path d=\"M11.0007 20.9998L12.0007 16.4998L15.9704 12.5301L19.4704 16.0301L15.5007 19.9998L11.0007 20.9998Z\" fill=\"currentColor\"/><Path d=\"M20.531 14.9694L17.031 11.4694L17.7507 10.7498C18.7172 9.78328 20.2842 9.78328 21.2507 10.7498C22.2172 11.7163 22.2172 13.2833 21.2507 14.2498L20.531 14.9694Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRewrite;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAm7B,EAAn7B,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,uRAAuR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oGAAoG,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iKAAiK,KAAK,eAAc,CAAI,EAC37B,EAEc",
  "debugId": "C228930DDD3C1A1664756E2164756E21",
  "names": []
}