{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCheckmark1Medium/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 IconCheckmark1Medium: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"checkmark-1-medium\"><path d=\"M17.1904 6.41296C17.5145 5.96596 18.1397 5.8664 18.5869 6.1903C19.0339 6.51435 19.1335 7.13962 18.8096 7.58679L10.8418 18.5868C10.6724 18.8204 10.4104 18.9697 10.123 18.996C9.83563 19.0221 9.55061 18.9227 9.34179 18.7235L5.30957 14.8729C4.91015 14.4915 4.89497 13.8583 5.27636 13.4589C5.65774 13.0595 6.29099 13.0453 6.69043 13.4266L9.89355 16.4852L17.1904 6.41296Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCheckmark1Medium;\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,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAA0c,EAA1c,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,EAAE,gXAAgX,KAAK,eAAc,CAAI,GAGpc",
  "debugId": "B09F9628B8757F4864756E2164756E21",
  "names": []
}