{"version":3,"sources":["../src/IconRewrite/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRewrite: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"rewrite, re-edit, redo\">\n      <path\n        d=\"M4.5 3V6.16846C6.23748 3.93707 8.95063 2.5 12 2.5C15.2289 2.5 18.0813 4.1116 19.7968 6.57093L20.2259 7.18607L18.9956 8.04421L18.5665 7.42907C17.1196 5.35469 14.7179 4 12 4C9.25128 4 6.82558 5.38587 5.38458 7.5H9V9H3V3H4.5Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M4 12V11.25H2.5V12C2.5 12.273 2.51153 12.5434 2.53416 12.8109C2.81659 16.1485 4.82319 18.9921 7.65667 20.4511L8.32347 20.7944L9.01013 19.4608L8.34333 19.1175C5.95418 17.8873 4.26631 15.491 4.02882 12.6844C4.00975 12.459 4 12.2307 4 12Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M11 20.9998L12 16.4998L15.9697 12.5301L19.4697 16.0301L15.5 19.9998L11 20.9998Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M20.5303 14.9694L17.0303 11.4694L17.75 10.7498C18.7165 9.78328 20.2835 9.78328 21.25 10.7498C22.2165 11.7163 22.2165 13.2833 21.25 14.2498L20.5303 14.9694Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconRewrite;\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,0BACpCC,EAAA,cAAC,QACC,EAAE,iOACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8OACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8JACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRewrite","props","React","CentralIconBase","IconRewrite_default"]}