{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDonut/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 IconDonut: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconDonut\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C11.2776 2 10.5719 2.07677 9.89121 2.22297L8.84052 2.44861L9.14109 3.48037C9.21203 3.72387 9.25 4.05469 9.25 4.47815C9.25 4.69637 9.10612 5.02522 8.66896 5.37044C8.24455 5.70559 7.68649 5.93324 7.20879 5.98778L6.58557 6.05893L6.37836 6.65099C6.24263 7.03879 6.00966 7.40177 5.73832 7.65486C5.46556 7.90927 5.21587 8 5.02539 8C4.49853 8 4.10551 7.97285 3.82533 7.8965L2.94386 7.65631L2.62522 8.51255C2.22064 9.59972 2 10.7752 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12ZM7.59164 12.5528L5.80279 11.6584L4.65836 13.9472L6.44721 14.8416L7.59164 12.5528ZM14 4.83579L15.9142 6.75L14.5 8.16421L12.5858 6.25L14 4.83579ZM18.4766 9.63626L16.5972 10.3203L17.5231 12.8641L19.4025 12.1801L18.4766 9.63626ZM16.9142 17L15 18.9142L13.5858 17.5L15.5 15.5858L16.9142 17ZM7.58579 17L9 15.5858L10.9142 17.5L9.5 18.9142L7.58579 17Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconDonut;\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,EAA8D,EAAM,KAAK,CAAC,IAAU,CAC/F,OAAO,gBAAkmC,EAAlmC,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,88BAA88B,KAAK,eAAc,CAAI,EAC1mC,EAEc",
  "debugId": "1BD09EAF0CEB448664756E2164756E21",
  "names": []
}