{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCheckCircleDashed/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 IconCheckCircleDashed: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"check-circle-dashed, done, confirm, save, success\"><path d=\"M13.4258 20.3809C13.8341 20.3122 14.2211 20.5878 14.29 20.9961C14.3588 21.4044 14.0832 21.7914 13.6748 21.8604C13.1298 21.9523 12.5702 22 12 22C11.4298 22 10.8702 21.9523 10.3252 21.8604C9.91684 21.7914 9.6412 21.4044 9.70996 20.9961C9.77886 20.5878 10.1659 20.3122 10.5742 20.3809C11.0372 20.459 11.5137 20.5 12 20.5C12.4863 20.5 12.9628 20.459 13.4258 20.3809Z\" fill=\"currentColor\"/><path d=\"M4.02051 16.7422C4.35812 16.5022 4.82643 16.5813 5.06641 16.9189C5.62014 17.6979 6.30205 18.3799 7.08105 18.9336C7.41867 19.1736 7.49779 19.6419 7.25781 19.9795C7.01785 20.3166 6.55032 20.3957 6.21289 20.1562C5.297 19.5052 4.49478 18.703 3.84375 17.7871C3.6043 17.4497 3.68344 16.9821 4.02051 16.7422Z\" fill=\"currentColor\"/><path d=\"M18.9336 16.9189C19.1736 16.5813 19.6419 16.5022 19.9795 16.7422C20.3166 16.9821 20.3957 17.4497 20.1562 17.7871C19.5052 18.703 18.703 19.5052 17.7871 20.1562C17.4497 20.3957 16.9821 20.3166 16.7422 19.9795C16.5022 19.6419 16.5813 19.1736 16.9189 18.9336C17.6979 18.3799 18.3799 17.6979 18.9336 16.9189Z\" fill=\"currentColor\"/><path d=\"M14.4199 9.02539C14.6822 8.70481 15.154 8.65763 15.4746 8.91992C15.7952 9.18222 15.8424 9.65403 15.5801 9.97461L11.0801 15.4746C10.9459 15.6386 10.7487 15.7385 10.5371 15.749C10.3256 15.7595 10.1195 15.68 9.96973 15.5303L7.96973 13.5303C7.67683 13.2374 7.67683 12.7626 7.96973 12.4697C8.26262 12.1768 8.73738 12.1768 9.03027 12.4697L10.4443 13.8838L14.4199 9.02539Z\" fill=\"currentColor\"/><path d=\"M2.13965 10.3252C2.20855 9.91684 2.59556 9.6412 3.00391 9.70996C3.41221 9.77886 3.68781 10.1659 3.61914 10.5742C3.54102 11.0372 3.5 11.5137 3.5 12C3.5 12.4863 3.54102 12.9628 3.61914 13.4258C3.68781 13.8341 3.41221 14.2211 3.00391 14.29C2.59556 14.3588 2.20855 14.0832 2.13965 13.6748C2.04769 13.1298 2 12.5702 2 12C2 11.4298 2.04769 10.8702 2.13965 10.3252Z\" fill=\"currentColor\"/><path d=\"M20.9961 9.70996C21.4044 9.6412 21.7914 9.91684 21.8604 10.3252C21.9523 10.8702 22 11.4298 22 12C22 12.5702 21.9523 13.1298 21.8604 13.6748C21.7914 14.0832 21.4044 14.3588 20.9961 14.29C20.5878 14.2211 20.3122 13.8341 20.3809 13.4258C20.459 12.9628 20.5 12.4863 20.5 12C20.5 11.5137 20.459 11.0372 20.3809 10.5742C20.3122 10.1659 20.5878 9.77885 20.9961 9.70996Z\" fill=\"currentColor\"/><path d=\"M6.21289 3.84375C6.55032 3.6043 7.01785 3.68344 7.25781 4.02051C7.49779 4.35812 7.41867 4.82643 7.08105 5.06641C6.30205 5.62015 5.62014 6.30205 5.06641 7.08105C4.82643 7.41867 4.35812 7.49779 4.02051 7.25781C3.68344 7.01785 3.6043 6.55032 3.84375 6.21289C4.49478 5.297 5.297 4.49478 6.21289 3.84375Z\" fill=\"currentColor\"/><path d=\"M16.7422 4.02051C16.9821 3.68344 17.4497 3.6043 17.7871 3.84375C18.703 4.49478 19.5052 5.297 20.1562 6.21289C20.3957 6.55032 20.3166 7.01785 19.9795 7.25781C19.6419 7.49779 19.1736 7.41867 18.9336 7.08105C18.3799 6.30205 17.6979 5.62014 16.9189 5.06641C16.5813 4.82643 16.5022 4.35812 16.7422 4.02051Z\" fill=\"currentColor\"/><path d=\"M12 2C12.5702 2 13.1298 2.04769 13.6748 2.13965C14.0832 2.20855 14.3588 2.59556 14.29 3.00391C14.2211 3.41221 13.8341 3.68781 13.4258 3.61914C12.9628 3.54102 12.4863 3.5 12 3.5C11.5137 3.5 11.0372 3.54102 10.5742 3.61914C10.1659 3.68781 9.77885 3.41221 9.70996 3.00391C9.6412 2.59556 9.91684 2.20855 10.3252 2.13965C10.8702 2.04769 11.4298 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCheckCircleDashed;\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,EAAwD,CAAC,IAAU,CAC9E,OAAO,gBAAkzG,EAAlzG,IAAqB,EAAO,UAAU,qDAAoD,gBAAC,OAAD,CAAM,EAAE,6WAA6W,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gTAAgT,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kTAAkT,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gXAAgX,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yWAAyW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6WAA6W,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8SAA8S,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gTAAgT,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8VAA8V,KAAK,eAAc,CAAI,GAG5yG",
  "debugId": "6F26DFF401DC057A64756E2164756E21",
  "names": []
}