{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDonutGlaze/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 IconDonutGlaze: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconDonutGlaze\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM11.2994 5.06828C12.6575 4.21394 14.4475 4.57942 15.3619 5.89779L15.7869 6.51043C15.9072 6.68394 16.0794 6.8149 16.2788 6.88454L16.9826 7.13043C18.4974 7.65956 19.3276 9.28684 18.867 10.8238L18.653 11.538C18.5924 11.7403 18.5973 11.9566 18.6672 12.1558L18.9138 12.8595C19.4445 14.3736 18.6899 16.0373 17.2011 16.6355L16.5093 16.9135C16.3133 16.9922 16.1473 17.1309 16.0351 17.3098L15.6387 17.9413C14.7858 19.3003 13.0146 19.7476 11.6187 18.9566L10.97 18.589C10.7863 18.4849 10.5743 18.4416 10.3645 18.4654L9.62362 18.5492C8.02933 18.7297 6.57524 17.6238 6.32336 16.0392L6.20632 15.3029C6.17317 15.0943 6.07485 14.9016 5.92545 14.7524L5.39796 14.2254C4.26284 13.0915 4.22085 11.2651 5.30268 10.0802L5.80541 9.52962C5.94779 9.37368 6.03715 9.17666 6.06068 8.96681L6.14377 8.22586C6.32258 6.63138 7.72432 5.45984 9.32522 5.56688L10.0692 5.61662C10.2798 5.6307 10.4896 5.57773 10.6683 5.46529L11.2994 5.06828ZM13.7185 7.03767C13.4137 6.59822 12.8171 6.47639 12.3644 6.76117L11.7333 7.15818C11.1971 7.49551 10.5678 7.65442 9.93573 7.61216L9.1918 7.56242C8.65816 7.52674 8.19092 7.91726 8.13131 8.44875L8.04822 9.1897C7.97762 9.81925 7.70954 10.4103 7.2824 10.8781L6.77968 11.4288C6.41907 11.8237 6.43306 12.4325 6.81144 12.8105L7.33893 13.3374C7.78711 13.7851 8.08207 14.3633 8.18152 14.9889L8.29857 15.7252C8.38253 16.2534 8.86722 16.6221 9.39865 16.5619L10.1395 16.478C10.769 16.4068 11.4049 16.5366 11.956 16.849L12.6047 17.2166C13.07 17.4802 13.6604 17.3311 13.9447 16.8781L14.3411 16.2466C14.6778 15.71 15.1758 15.2938 15.7637 15.0576L16.4555 14.7797C16.9518 14.5803 17.2033 14.0257 17.0264 13.521L16.7798 12.8174C16.5702 12.2195 16.5553 11.5707 16.7372 10.9639L16.9512 10.2497C17.1047 9.73734 16.828 9.19491 16.3231 9.01854L15.6192 8.77265C15.0211 8.56373 14.5046 8.17085 14.1435 7.65031L13.7185 7.03767ZM12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconDonutGlaze;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAgpE,EAAhpE,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,u/DAAu/D,KAAK,eAAc,CAAI,EACxpE,EAEc",
  "debugId": "D0847BBE1C4C5BEF64756E2164756E21",
  "names": []
}