{"version":3,"sources":["../src/IconDonut/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDonut: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"donut\">\n      <circle cx=\"12\" cy=\"12\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"2\" />\n      <path\n        d=\"M7.32222 6.98133C8.66249 6.82832 10.25 5.76583 10.25 4.47815C10.25 4.00711 10.2091 3.57126 10.1012 3.20067C10.7133 3.06921 11.3486 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 10.8961 3.19875 9.83858 3.56242 8.86133C3.9814 8.97549 4.49035 9 5.02539 9C6.05207 9 6.95313 8.03591 7.32222 6.98133Z\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n      />\n      <path\n        d=\"M6.25 13L6 13.5\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinecap=\"square\"\n      />\n      <path\n        d=\"M14 6.25L14.5 6.75\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinecap=\"square\"\n      />\n      <path\n        d=\"M17.8789 10.9177L18.1208 11.5822\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinecap=\"square\"\n      />\n      <path\n        d=\"M15.5 17L15 17.5\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinecap=\"square\"\n      />\n      <path\n        d=\"M9.5 17.5L9 17\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinecap=\"square\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconDonut;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,SACpCC,EAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEA,EAAA,cAAC,QACC,EAAE,qVACF,OAAO,eACP,YAAY,IACd,EACAA,EAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconDonut","props","React","CentralIconBase","IconDonut_default"]}