{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAutoCorrect/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 IconAutoCorrect: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"auto-correct,autocheck, text-correction\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.0449 2C10.3419 2 10.6108 2.17517 10.7309 2.44673L15.7461 13.7905C15.8487 14.0224 15.8271 14.2905 15.6887 14.503C15.5503 14.7156 15.3138 14.8438 15.0602 14.8438H5.51824L3.43614 19.5533C3.26865 19.9321 2.82577 20.1034 2.44692 19.936C2.06808 19.7685 1.89675 19.3256 2.06424 18.9467L9.35898 2.44674C9.47904 2.17517 9.74801 2 10.0449 2ZM6.1814 13.3438H13.9086L10.0449 4.6048L6.1814 13.3438ZM21.6662 13.126C22.0109 13.3557 22.104 13.8214 21.8742 14.166L16.8742 21.666C16.7496 21.853 16.5477 21.9742 16.3241 21.9963C16.1005 22.0185 15.8787 21.9392 15.7199 21.7803L13.2199 19.2803C12.927 18.9874 12.927 18.5126 13.2199 18.2197C13.5128 17.9268 13.9876 17.9268 14.2805 18.2197L16.1336 20.0728L20.6262 13.334C20.8559 12.9893 21.3216 12.8962 21.6662 13.126Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAutoCorrect;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAq4B,EAAr4B,IAAqB,EAAO,UAAU,2CAA0C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gvBAAgvB,KAAK,eAAc,CAAI,GAG/3B",
  "debugId": "A2E2D383E3F3936464756E2164756E21",
  "names": []
}