{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconOngoing/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 IconOngoing: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconOngoing\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20H13V22H12C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2H13V4H12ZM16.1351 2.83771L17.0007 3.33843C17.9215 3.87107 18.749 4.54603 19.4535 5.33309L20.1204 6.07822L18.6301 7.41205L17.9632 6.66691C17.3987 6.03622 16.7359 5.49575 15.9993 5.06965L15.1337 4.56892L16.1351 2.83771ZM13 7.58579L17.4142 12L13 16.4142L11.5858 15L13.5858 13H7V11H13.5858L11.5858 9L13 7.58579ZM21.6175 9.07459L21.8109 10.0557C21.9351 10.6854 22 11.3356 22 12C22 12.6644 21.9351 13.3146 21.8109 13.9443L21.6175 14.9254L19.6552 14.5385L19.8487 13.5574C19.9479 13.0544 20 12.5338 20 12C20 11.4662 19.9479 10.9456 19.8487 10.4426L19.6552 9.46148L21.6175 9.07459ZM20.1204 17.9218L19.4535 18.6669C18.749 19.454 17.9215 20.1289 17.0007 20.6616L16.1351 21.1623L15.1337 19.4311L15.9993 18.9304C16.7359 18.5042 17.3987 17.9638 17.9632 17.3331L18.6301 16.588L20.1204 17.9218Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconOngoing;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAwhC,EAAxhC,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,k4BAAk4B,KAAK,eAAc,CAAI,EAChiC,EAEc",
  "debugId": "79A43B7A801860A164756E2164756E21",
  "names": []
}