{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSuperscript/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 IconSuperscript: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSuperscript\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.0073 5C18.4574 5 18.0073 5.43397 18.0073 6.21939H16.0073C16.0073 4.68283 17.0298 3 19.0073 3C20.6574 3 22.0022 4.25551 22.0022 6.04969C22.0022 6.96449 21.5919 7.64769 21.0868 8.15642C20.6434 8.60298 20.0779 8.96111 19.6216 9.25005C19.5933 9.26798 19.5655 9.28564 19.538 9.30304C19.1139 9.57227 18.7888 9.79426 18.5493 10.0006H22.0022V12.0006H16.0022V11.0006C16.0022 9.17357 17.4764 8.2408 18.3837 7.66672C18.4118 7.64896 18.4394 7.63154 18.4663 7.61445C18.997 7.27757 19.3884 7.02844 19.6675 6.7473C19.9124 6.50062 20.0022 6.29665 20.0022 6.04969C20.0022 5.37368 19.5665 5 19.0073 5ZM3.13019 4.59159L8.00216 10.438L12.8741 4.59159L14.4106 5.87196L9.30386 12L14.4106 18.128L12.8741 19.4084L8.00216 13.562L3.13019 19.4084L1.59375 18.128L6.70045 12L1.59375 5.87196L3.13019 4.59159Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSuperscript;\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,gBAA26B,EAA36B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ixBAAixB,KAAK,eAAc,CAAI,EACn7B,EAEc",
  "debugId": "F6F3434C56C982C064756E2164756E21",
  "names": []
}