{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCheckmark2/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 IconCheckmark2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"checkmark-2\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.7425 2.99454C22.2979 3.40464 22.4156 4.18729 22.0055 4.74263L10.0055 20.9926C9.80427 21.2652 9.501 21.4443 9.16518 21.4891C8.82936 21.5339 8.48974 21.4404 8.22411 21.2301L2.22411 16.4801C1.68284 16.0516 1.59143 15.2655 2.01993 14.7242C2.44844 14.1829 3.2346 14.0915 3.77587 14.52L8.76235 18.4677L19.9944 3.25753C20.4045 2.70218 21.1872 2.58444 21.7425 2.99454Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCheckmark2;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAwe,EAAxe,IAAqB,EAAO,UAAU,eAAc,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+WAA+W,KAAK,eAAc,CAAI,GAGle",
  "debugId": "68A0D51F9D8D389F64756E2164756E21",
  "names": []
}