{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSunburstChart2/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 IconSunburstChart2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconSunburstChart2\"><Path d=\"M5.66667 12C5.66667 10.2511 6.37555 8.66777 7.52166 7.52166M7.52166 16.4783C8.66777 17.6245 10.2511 18.3333 12 18.3333M5.28249 5.28249C7.00165 3.56332 9.37665 2.5 12 2.5M18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12M16.4783 7.52166C17.6245 8.66777 18.3333 10.2511 18.3333 12C18.3333 13.7489 17.6245 15.3322 16.4783 16.4783M18.7175 18.7175C16.9984 20.4367 14.6234 21.5 12 21.5M5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12M12 8.83333C11.1255 8.83333 10.3339 9.18777 9.76083 9.76083C9.18777 10.3339 8.83333 11.1255 8.83333 12C8.83333 12.8745 9.18777 13.6661 9.76083 14.2392C10.3339 14.8122 11.1255 15.1667 12 15.1667C12.8745 15.1667 13.6661 14.8122 14.2392 14.2392C14.8122 13.6661 15.1667 12.8745 15.1667 12\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSunburstChart2;\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,EAAuE,EAAM,KAAK,CAAC,IAAU,CACxG,OAAO,gBAA20B,EAA30B,IAAqB,EAAO,OAAO,wDAAuD,gBAAC,EAAD,CAAM,EAAE,gtBAAgtB,OAAO,eAAc,CAAI,EACn1B,EAEc",
  "debugId": "4B483EB9082ED93964756E2164756E21",
  "names": []
}