{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPageCheck/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 IconPageCheck: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"page-check, signed, document\"><path d=\"M4.75 2C4.33579 2 4 2.33579 4 2.75V21.25C4 21.6642 4.33579 22 4.75 22H12.9701L11.6502 20.6653C10.7764 19.7818 10.7843 18.3572 11.6679 17.4834C12.5514 16.6096 13.976 16.6176 14.8498 17.5011L15.241 17.8966L20 12.3351V2.75C20 2.33579 19.6642 2 19.25 2H4.75Z\" fill=\"currentColor\"/><path d=\"M21.3288 15.227C21.5922 14.9074 21.5466 14.4347 21.227 14.1712C20.9074 13.9078 20.4347 13.9534 20.1712 14.273L15.3422 20.1322L13.7833 18.5558C13.492 18.2613 13.0171 18.2586 12.7226 18.5499C12.4281 18.8411 12.4255 19.316 12.7167 19.6105L14.8596 21.7774C15.0088 21.9282 15.2149 22.0088 15.4268 21.9992C15.6387 21.9896 15.8367 21.8907 15.9716 21.727L21.3288 15.227Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPageCheck;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA+uB,EAA/uB,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,iQAAiQ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6WAA6W,KAAK,eAAc,CAAI,GAGzuB",
  "debugId": "88E99D620252C5F064756E2164756E21",
  "names": []
}