{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDoupleCheck/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 IconDoupleCheck: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"douple-check\"><path d=\"M17.6477 4.3035C17.8942 3.97077 18.3637 3.90092 18.6966 4.14725C19.0291 4.39375 19.0991 4.86329 18.8528 5.19608L8.12234 19.6961C8.0019 19.8587 7.82088 19.9658 7.62039 19.993C7.41973 20.02 7.21622 19.9646 7.05691 19.8396L1.28738 15.3084C0.961703 15.0526 0.904809 14.5814 1.16043 14.2557C1.41621 13.93 1.88741 13.8731 2.21316 14.1287L7.37527 18.1834L17.6477 4.3035Z\" fill=\"currentColor\"/><path d=\"M21.6477 4.3035C21.8942 3.9708 22.3637 3.90093 22.6966 4.14725C23.0291 4.39376 23.0991 4.8633 22.8528 5.19608L12.1223 19.6961C11.8759 20.0287 11.4064 20.0985 11.0735 19.8523C10.7408 19.6059 10.671 19.1364 10.9173 18.8035L21.6477 4.3035Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconDoupleCheck;\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,gBAA8sB,EAA9sB,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,8WAA8W,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+OAA+O,KAAK,eAAc,CAAI,GAGxsB",
  "debugId": "31BA23FD30333BF864756E2164756E21",
  "names": []
}