{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMathNotes/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 IconMathNotes: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconMathNotes\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13 3V8.42219C13.4698 7.7327 13.9735 7.07778 14.5259 6.49784C15.9109 5.04358 17.6571 4 20 4H21V6H20C18.3429 6 17.0891 6.70642 15.9741 7.87716C15.156 8.73618 14.4439 9.81137 13.7355 11H21V13H13V21H11V15.5778C10.5302 16.2673 10.0265 16.9222 9.47414 17.5022C8.08912 18.9564 6.34287 20 4 20H3V18H4C5.65713 18 6.91088 17.2936 8.02586 16.1228C8.84398 15.2638 9.55609 14.1886 10.2645 13H3V11H11V3H13ZM5.5 4.08579L7 5.58579L8.5 4.08579L9.91421 5.5L8 7.41421V10H6V7.41421L4.08579 5.5L5.5 4.08579ZM15.5 14.0858L17 15.5858L18.5 14.0858L19.9142 15.5L18.4142 17L19.9142 18.5L18.5 19.9142L17 18.4142L15.5 19.9142L14.0858 18.5L15.5858 17L14.0858 15.5L15.5 14.0858Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMathNotes;\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,gBAAoyB,EAApyB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4oBAA4oB,KAAK,eAAc,CAAI,EAC5yB,EAEc",
  "debugId": "553E393269A62FF564756E2164756E21",
  "names": []
}