{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCircleDotted/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 IconCircleDotted: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCircleDotted\"><Path d=\"M13 3C13 3.55228 12.5523 4 12 4C11.4477 4 11 3.55228 11 3C11 2.44772 11.4477 2 12 2C12.5523 2 13 2.44772 13 3Z\" fill=\"currentColor\"/><Path d=\"M13 21C13 21.5523 12.5523 22 12 22C11.4477 22 11 21.5523 11 21C11 20.4477 11.4477 20 12 20C12.5523 20 13 20.4477 13 21Z\" fill=\"currentColor\"/><Path d=\"M9.47972 3.3024C9.69108 3.81265 9.44877 4.39761 8.93853 4.60896C8.42828 4.82031 7.84332 4.57801 7.63197 4.06777C7.42062 3.55752 7.66292 2.97255 8.17316 2.7612C8.68341 2.54985 9.26837 2.79216 9.47972 3.3024Z\" fill=\"currentColor\"/><Path d=\"M16.368 19.9322C16.5794 20.4425 16.3371 21.0274 15.8268 21.2388C15.3166 21.4501 14.7316 21.2078 14.5203 20.6976C14.3089 20.1874 14.5512 19.6024 15.0615 19.391C15.5717 19.1797 16.1567 19.422 16.368 19.9322Z\" fill=\"currentColor\"/><Path d=\"M6.34312 4.92909C6.73365 5.31961 6.73365 5.95278 6.34312 6.3433C5.9526 6.73382 5.31943 6.73382 4.92891 6.3433C4.53839 5.95278 4.53839 5.31961 4.92891 4.92909C5.31943 4.53856 5.9526 4.53856 6.34312 4.92909Z\" fill=\"currentColor\"/><Path d=\"M19.071 17.657C19.4616 18.0475 19.4616 18.6807 19.071 19.0712C18.6805 19.4617 18.0474 19.4617 17.6568 19.0712C17.2663 18.6807 17.2663 18.0475 17.6568 17.657C18.0474 17.2665 18.6805 17.2665 19.071 17.657Z\" fill=\"currentColor\"/><Path d=\"M4.06786 7.63216C4.57811 7.84351 4.82041 8.42848 4.60906 8.93872C4.39771 9.44897 3.81274 9.69127 3.3025 9.47992C2.79225 9.26857 2.54995 8.6836 2.7613 8.17336C2.97265 7.66311 3.55762 7.42081 4.06786 7.63216Z\" fill=\"currentColor\"/><Path d=\"M20.6977 14.5205C21.2079 14.7318 21.4502 15.3168 21.2389 15.827C21.0275 16.3373 20.4426 16.5796 19.9323 16.3682C19.4221 16.1569 19.1798 15.5719 19.3911 15.0617C19.6025 14.5514 20.1874 14.3091 20.6977 14.5205Z\" fill=\"currentColor\"/><Path d=\"M3.00014 11.0001C3.55242 11.0001 4.00014 11.4478 4.00014 12.0001C4.00014 12.5524 3.55242 13.0001 3.00014 13.0001C2.44785 13.0001 2.00014 12.5524 2.00014 12.0001C2.00014 11.4478 2.44785 11.0001 3.00014 11.0001Z\" fill=\"currentColor\"/><Path d=\"M21.0001 11.0001C21.5524 11.0001 22.0001 11.4478 22.0001 12.0001C22.0001 12.5524 21.5524 13.0001 21.0001 13.0001C20.4479 13.0001 20.0001 12.5524 20.0001 12.0001C20.0001 11.4478 20.4479 11.0001 21.0001 11.0001Z\" fill=\"currentColor\"/><Path d=\"M3.30264 14.5203C3.81289 14.3089 4.39785 14.5512 4.6092 15.0615C4.82055 15.5717 4.57825 16.1567 4.06801 16.368C3.55776 16.5794 2.9728 16.3371 2.76145 15.8268C2.55009 15.3166 2.7924 14.7316 3.30264 14.5203Z\" fill=\"currentColor\"/><Path d=\"M19.9325 7.63197C20.4427 7.42062 21.0277 7.66292 21.239 8.17317C21.4504 8.68341 21.2081 9.26838 20.6978 9.47973C20.1876 9.69108 19.6026 9.44878 19.3913 8.93853C19.1799 8.42829 19.4222 7.84332 19.9325 7.63197Z\" fill=\"currentColor\"/><Path d=\"M4.92908 17.6566C5.31961 17.2661 5.95277 17.2661 6.3433 17.6566C6.73382 18.0472 6.73382 18.6803 6.3433 19.0708C5.95277 19.4614 5.31961 19.4614 4.92908 19.0708C4.53856 18.6803 4.53856 18.0472 4.92908 17.6566Z\" fill=\"currentColor\"/><Path d=\"M17.657 4.92871C18.0475 4.53818 18.6807 4.53818 19.0712 4.92871C19.4617 5.31923 19.4617 5.9524 19.0712 6.34292C18.6807 6.73344 18.0475 6.73344 17.657 6.34292C17.2665 5.9524 17.2665 5.31923 17.657 4.92871Z\" fill=\"currentColor\"/><Path d=\"M7.63216 19.9319C7.84351 19.4216 8.42848 19.1793 8.93872 19.3907C9.44897 19.602 9.69127 20.187 9.47992 20.6973C9.26857 21.2075 8.6836 21.4498 8.17335 21.2385C7.66311 21.0271 7.42081 20.4421 7.63216 19.9319Z\" fill=\"currentColor\"/><Path d=\"M14.5205 3.30206C14.7318 2.79181 15.3168 2.54951 15.827 2.76086C16.3373 2.97221 16.5796 3.55718 16.3682 4.06743C16.1569 4.57767 15.5719 4.81997 15.0617 4.60862C14.5514 4.39727 14.3091 3.8123 14.5205 3.30206Z\" fill=\"currentColor\"/><Path d=\"M18 12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12C6 8.68629 8.68629 6 12 6C15.3137 6 18 8.68629 18 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCircleDotted;\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,gBAAsxH,EAAtxH,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0HAA0H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8MAA8M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+MAA+M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oHAAoH,KAAK,eAAc,CAAI,EAC9xH,EAEc",
  "debugId": "74B3E5F2C957688564756E2164756E21",
  "names": []
}