{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconNumberedList/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 IconNumberedList: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconNumberedList\"><Path d=\"M5.02032 3.5H7.00035V10.5H5.00035V6.00373L3.79202 6.89878L2.60156 5.29167L5.02032 3.5Z\" fill=\"currentColor\"/><Path d=\"M21 6H11V8H21V6Z\" fill=\"currentColor\"/><Path d=\"M21 16H11V18H21V16Z\" fill=\"currentColor\"/><Path d=\"M4.28285 16.194C4.72835 15.7573 5.20392 15.5 5.61224 15.5C5.77212 15.5 5.85564 15.5539 5.90124 15.6012C5.95201 15.6538 6.00122 15.7468 6.00122 15.889C6.00122 16.0234 5.95751 16.1494 5.79655 16.3244C5.6114 16.5256 5.33872 16.7183 4.95403 16.9698L4.84801 17.0388C4.52198 17.2506 4.10729 17.52 3.77978 17.8324C3.39324 18.2011 3.00122 18.7457 3.00122 19.5V20.5H8.25122V18.5H6.2661C6.59057 18.2821 6.96236 18.0111 7.2684 17.6785C7.66993 17.2421 8.00122 16.6543 8.00122 15.889C8.00122 14.6036 7.03559 13.5 5.61224 13.5C4.43136 13.5 3.47552 14.1847 2.88281 14.7657L4.28285 16.194Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconNumberedList;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAA84B,EAA94B,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,yFAAyF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sBAAsB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gkBAAgkB,KAAK,eAAc,CAAI,EACt5B,EAEc",
  "debugId": "78A40B0AEA131F5664756E2164756E21",
  "names": []
}