{"version":3,"sources":["../src/IconRepaint/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRepaint: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"repaint, recreate, redo\">\n      <path\n        d=\"M4.5 6.16846V3H3V9H9V7.5H5.38458C6.82558 5.38587 9.25128 4 12 4C14.7179 4 17.1196 5.35469 18.5665 7.42907L18.9956 8.04421L20.2259 7.18607L19.7968 6.57093C18.0813 4.1116 15.2289 2.5 12 2.5C8.95063 2.5 6.23748 3.93707 4.5 6.16846Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M4 11.25V12C4 12.2307 4.00975 12.459 4.02882 12.6844C4.26631 15.491 5.95418 17.8873 8.34333 19.1175L9.01013 19.4608L8.32347 20.7944L7.65667 20.4511C4.82319 18.9921 2.81659 16.1485 2.53416 12.8109C2.51153 12.5434 2.5 12.273 2.5 12V11.25H4Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M21.3321 10.6679C19.2303 8.7135 15.8864 12.7781 14.1831 15.0658C15.5685 15.3388 16.6601 16.4301 16.9336 17.8153C19.2518 16.0819 23.4367 12.6249 21.3321 10.6679Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M16 18.4953C16 17.1172 14.8828 16 13.5047 16C10.948 16 10.9806 18.5573 11.005 20.4715C11.0073 20.651 11.0095 20.8249 11.0095 20.9905C11.1751 20.9905 11.349 20.9927 11.5285 20.995C13.4427 21.0194 16 21.052 16 18.4953Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconRepaint;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,EAAE,uOACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iPACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2NACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRepaint","props","React","CentralIconBase","IconRepaint_default"]}