{
  "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-outlined-radius-0-stroke-1-IconSuperscript\"><Path d=\"M16.5 11.5H16V12H16.5V11.5ZM21.5 12H22V11H21.5V12ZM16.5 12H21.5V11H16.5V12ZM19.0065 4C20.1578 4 21 4.75153 21 5.84229H22C22 4.11024 20.6166 3 19.0065 3V4ZM21 5.84229C21 6.32504 20.781 6.72166 20.3739 7.10945C19.9532 7.5102 19.3805 7.85586 18.743 8.23798C18.1302 8.60525 17.4528 9.00883 16.9358 9.5029C16.4052 10.01 16 10.6531 16 11.5H17C17 11.0136 17.2198 10.6147 17.6267 10.2258C18.0472 9.82398 18.6198 9.47764 19.257 9.09572C19.8695 8.72865 20.5468 8.32584 21.0636 7.8335C21.594 7.32821 22 6.68715 22 5.84229H21ZM17.0156 5.82957C17.1041 4.8285 17.8193 4 19.0065 4V3C17.2346 3 16.1476 4.29342 16.0195 5.74145L17.0156 5.82957Z\" fill=\"currentColor\"/><Path d=\"M2.5 5.5L13.5 18.5M13.5 5.5L2.5 18.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,gBAAw0B,EAAx0B,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,qnBAAqnB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uCAAuC,OAAO,eAAe,cAAc,SAAQ,CAAI,EACh1B,EAEc",
  "debugId": "94341F6F34ACCFAA64756E2164756E21",
  "names": []
}