{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSubscript/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 IconSubscript: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconSubscript\"><Path d=\"M16.5 20.5H16V21H16.5V20.5ZM21.5 21H22V20H21.5V21ZM16.5 21H21.5V20H16.5V21ZM19.0065 13C20.1578 13 21 13.7515 21 14.8423H22C22 13.1102 20.6166 12 19.0065 12V13ZM21 14.8423C21 15.325 20.781 15.7217 20.3739 16.1095C19.9532 16.5102 19.3805 16.8559 18.743 17.238C18.1302 17.6052 17.4528 18.0088 16.9358 18.5029C16.4052 19.01 16 19.6531 16 20.5H17C17 20.0136 17.2198 19.6147 17.6267 19.2258C18.0472 18.824 18.6198 18.4776 19.257 18.0957C19.8695 17.7287 20.5468 17.3258 21.0636 16.8335C21.594 16.3282 22 15.6871 22 14.8423H21ZM17.0156 14.8296C17.1041 13.8285 17.8193 13 19.0065 13V12C17.2346 12 16.1476 13.2934 16.0195 14.7414L17.0156 14.8296Z\" 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 IconSubscript;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAg1B,EAAh1B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,+nBAA+nB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uCAAuC,OAAO,eAAe,cAAc,SAAQ,CAAI,EACx1B,EAEc",
  "debugId": "C2C566CCBAE8AB0D64756E2164756E21",
  "names": []
}