{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCircleDotted/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCircleDotted: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"circle-dotted\"><path d=\"M12.75 2.75C12.75 3.16421 12.4142 3.5 12 3.5C11.5858 3.5 11.25 3.16421 11.25 2.75C11.25 2.33579 11.5858 2 12 2C12.4142 2 12.75 2.33579 12.75 2.75Z\" fill=\"currentColor\"/><path d=\"M3.5 11.75C3.5 12.1642 3.16421 12.5 2.75 12.5C2.33579 12.5 2 12.1642 2 11.75C2 11.3358 2.33579 11 2.75 11C3.16421 11 3.5 11.3358 3.5 11.75Z\" fill=\"currentColor\"/><path d=\"M22 11.75C22 12.1642 21.6642 12.5 21.25 12.5C20.8358 12.5 20.5 12.1642 20.5 11.75C20.5 11.3358 20.8358 11 21.25 11C21.6642 11 22 11.3358 22 11.75Z\" fill=\"currentColor\"/><path d=\"M12.75 21.25C12.75 21.6642 12.4142 22 12 22C11.5858 22 11.25 21.6642 11.25 21.25C11.25 20.8358 11.5858 20.5 12 20.5C12.4142 20.5 12.75 20.8358 12.75 21.25Z\" fill=\"currentColor\"/><path d=\"M9.15309 3.1671C9.3116 3.54979 9.12987 3.98851 8.74719 4.14702C8.36451 4.30554 7.92578 4.12381 7.76727 3.74113C7.60876 3.35844 7.79048 2.91972 8.17317 2.7612C8.55585 2.60269 8.99458 2.78442 9.15309 3.1671Z\" fill=\"currentColor\"/><path d=\"M4.05135 15.0218C4.20987 15.4045 4.02814 15.8432 3.64546 16.0018C3.26277 16.1603 2.82405 15.9785 2.66553 15.5959C2.50702 15.2132 2.68875 14.7745 3.07143 14.6159C3.45411 14.4574 3.89284 14.6392 4.05135 15.0218Z\" fill=\"currentColor\"/><path d=\"M21.1431 7.9422C21.3016 8.32488 21.1199 8.76361 20.7372 8.92212C20.3545 9.08063 19.9158 8.8989 19.7573 8.51622C19.5988 8.13354 19.7805 7.69481 20.1632 7.5363C20.5459 7.37779 20.9846 7.55951 21.1431 7.9422Z\" fill=\"currentColor\"/><path d=\"M16.2327 20.2589C16.3912 20.6416 16.2095 21.0803 15.8268 21.2388C15.4441 21.3973 15.0054 21.2156 14.8469 20.8329C14.6884 20.4502 14.8701 20.0115 15.2528 19.853C15.6355 19.6945 16.0742 19.8762 16.2327 20.2589Z\" fill=\"currentColor\"/><path d=\"M5.98979 4.92878C6.28269 5.22168 6.28269 5.69655 5.98979 5.98944C5.6969 6.28234 5.22203 6.28234 4.92913 5.98944C4.63624 5.69655 4.63624 5.22168 4.92913 4.92878C5.22203 4.63589 5.6969 4.63589 5.98979 4.92878Z\" fill=\"currentColor\"/><path d=\"M5.81302 17.8335C6.10591 18.1264 6.10591 18.6012 5.81302 18.8941C5.52012 19.187 5.04525 19.187 4.75236 18.8941C4.45946 18.6012 4.45946 18.1264 4.75236 17.8335C5.04525 17.5406 5.52012 17.5406 5.81302 17.8335Z\" fill=\"currentColor\"/><path d=\"M18.8945 4.75201C19.1874 5.0449 19.1874 5.51977 18.8945 5.81267C18.6016 6.10556 18.1267 6.10556 17.8338 5.81267C17.5409 5.51977 17.5409 5.0449 17.8338 4.75201C18.1267 4.45911 18.6016 4.45911 18.8945 4.75201Z\" fill=\"currentColor\"/><path d=\"M19.0713 18.0103C19.3642 18.3032 19.3642 18.778 19.0713 19.0709C18.7784 19.3638 18.3035 19.3638 18.0106 19.0709C17.7177 18.778 17.7177 18.3032 18.0106 18.0103C18.3035 17.7174 18.7784 17.7174 19.0713 18.0103Z\" fill=\"currentColor\"/><path d=\"M3.74117 7.76727C4.12386 7.92578 4.30558 8.36451 4.14707 8.74719C3.98856 9.12987 3.54983 9.3116 3.16715 9.15309C2.78446 8.99458 2.60274 8.55585 2.76125 8.17317C2.91976 7.79048 3.35849 7.60876 3.74117 7.76727Z\" fill=\"currentColor\"/><path d=\"M8.51627 19.7573C8.89895 19.9158 9.08068 20.3545 8.92216 20.7372C8.76365 21.1199 8.32492 21.3016 7.94224 21.1431C7.55956 20.9846 7.37783 20.5459 7.53634 20.1632C7.69486 19.7805 8.13358 19.5988 8.51627 19.7573Z\" fill=\"currentColor\"/><path d=\"M15.5959 2.66553C15.9786 2.82405 16.1603 3.26277 16.0018 3.64546C15.8433 4.02814 15.4046 4.20987 15.0219 4.05135C14.6392 3.89284 14.4575 3.45411 14.616 3.07143C14.7745 2.68875 15.2132 2.50702 15.5959 2.66553Z\" fill=\"currentColor\"/><path d=\"M20.8329 14.8469C21.2156 15.0054 21.3974 15.4441 21.2388 15.8268C21.0803 16.2095 20.6416 16.3912 20.2589 16.2327C19.8762 16.0742 19.6945 15.6355 19.853 15.2528C20.0115 14.8701 20.4503 14.6884 20.8329 14.8469Z\" fill=\"currentColor\"/><path d=\"M18.5 12C18.5 15.5899 15.5899 18.5 12 18.5C8.41015 18.5 5.5 15.5899 5.5 12C5.5 8.41015 8.41015 5.5 12 5.5C15.5899 5.5 18.5 8.41015 18.5 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCircleDotted;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAquH,EAAruH,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8IAA8I,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8IAA8I,KAAK,eAAc,CAAI,GAG/tH",
  "debugId": "1FDED0E21CD5147A64756E2164756E21",
  "names": []
}