{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAtom/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 IconAtom: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"atom\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6.00192 4.50426C5.38516 4.47203 5.0254 4.62023 4.82281 4.82281C4.62023 5.0254 4.47203 5.38516 4.50426 6.00192C4.53648 6.61844 4.74829 7.40506 5.15814 8.31933C5.49776 9.07696 5.96174 9.89651 6.53735 10.745C7.13942 10.002 7.80765 9.2592 8.53343 8.53343C9.2592 7.80765 10.002 7.13942 10.745 6.53735C9.89651 5.96174 9.07696 5.49776 8.31933 5.15814C7.40506 4.74829 6.61844 4.53648 6.00192 4.50426ZM11.9999 5.58286C10.942 4.83059 9.90314 4.2243 8.93291 3.78937C7.92108 3.33579 6.94627 3.05156 6.0802 3.0063C5.21437 2.96106 4.37037 3.15394 3.76215 3.76215C3.15394 4.37037 2.96106 5.21437 3.0063 6.0802C3.05156 6.94627 3.33579 7.92108 3.78937 8.93292C4.2243 9.90314 4.83059 10.942 5.58286 11.9999C4.83059 13.0579 4.2243 14.0967 3.78938 15.0669C3.33579 16.0788 3.05157 17.0536 3.00631 17.9196C2.96106 18.7855 3.15394 19.6295 3.76216 20.2377C4.37037 20.8459 5.21437 21.0388 6.0802 20.9935C6.94627 20.9483 7.92108 20.6641 8.93292 20.2105C9.90314 19.7755 10.942 19.1693 11.9999 18.417C13.0579 19.1693 14.0967 19.7755 15.0669 20.2105C16.0788 20.6641 17.0536 20.9483 17.9196 20.9935C18.7855 21.0388 19.6295 20.8459 20.2377 20.2377C20.8459 19.6295 21.0388 18.7855 20.9935 17.9196C20.9483 17.0536 20.6641 16.0788 20.2105 15.0669C19.7755 14.0967 19.1693 13.0579 18.417 11.9999C19.1693 10.942 19.7755 9.90314 20.2105 8.93292C20.6641 7.92108 20.9483 6.94627 20.9935 6.0802C21.0388 5.21437 20.8459 4.37037 20.2377 3.76215C19.6295 3.15394 18.7855 2.96106 17.9196 3.00631C17.0536 3.05157 16.0788 3.33579 15.0669 3.78937C14.0967 4.2243 13.0579 4.83059 11.9999 5.58286ZM11.9999 7.45514C11.2003 8.08211 10.3898 8.79839 9.59409 9.59409C8.79839 10.3898 8.08211 11.2003 7.45514 11.9999C8.08211 12.7995 8.79839 13.6101 9.59408 14.4058C10.3898 15.2015 11.2003 15.9177 11.9999 16.5447C12.7995 15.9177 13.6101 15.2015 14.4058 14.4058C15.2015 13.6101 15.9177 12.7995 16.5447 11.9999C15.9177 11.2003 15.2015 10.3898 14.4058 9.59409C13.6101 8.79839 12.7995 8.08211 11.9999 7.45514ZM17.4625 10.745C16.8604 10.002 16.1922 9.2592 15.4664 8.53342C14.7406 7.80765 13.9979 7.13942 13.2549 6.53735C14.1033 5.96174 14.9229 5.49776 15.6805 5.15814C16.5948 4.74829 17.3814 4.53648 17.9979 4.50426C18.6147 4.47203 18.9745 4.62023 19.177 4.82281C19.3796 5.0254 19.5278 5.38516 19.4956 6.00192C19.4634 6.61844 19.2516 7.40506 18.8417 8.31933C18.5021 9.07696 18.0381 9.89651 17.4625 10.745ZM17.4625 13.2549C16.8604 13.9979 16.1922 14.7406 15.4664 15.4664C14.7406 16.1922 13.9979 16.8604 13.2549 17.4625C14.1033 18.0381 14.9229 18.5021 15.6805 18.8417C16.5948 19.2516 17.3814 19.4634 17.9979 19.4956C18.6147 19.5278 18.9744 19.3796 19.177 19.177C19.3796 18.9744 19.5278 18.6147 19.4956 17.9979C19.4634 17.3814 19.2516 16.5948 18.8417 15.6805C18.5021 14.9229 18.0381 14.1033 17.4625 13.2549ZM10.745 17.4625C10.002 16.8604 9.2592 16.1922 8.53342 15.4664C7.80765 14.7406 7.13942 13.9979 6.53735 13.2549C5.96174 14.1033 5.49777 14.9229 5.15814 15.6805C4.74829 16.5948 4.53648 17.3814 4.50426 17.9979C4.47203 18.6147 4.62023 18.9745 4.82282 19.177C5.0254 19.3796 5.38516 19.5278 6.00192 19.4956C6.61844 19.4634 7.40506 19.2516 8.31933 18.8417C9.07696 18.5021 9.89651 18.0381 10.745 17.4625Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAtom;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAqrG,EAArrG,IAAqB,EAAO,UAAU,QAAO,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mkGAAmkG,KAAK,eAAc,CAAI,GAG/qG",
  "debugId": "042B7C93F026463864756E2164756E21",
  "names": []
}