{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShieldCheck/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 IconShieldCheck: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"shield-check, security, protection\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.4466 2.14352C11.8058 2.02378 12.1942 2.02378 12.5534 2.14352L19.8034 4.56018C20.518 4.79838 21 5.46712 21 6.22038V11.912C21 14.6493 19.8165 16.6697 18.1412 18.2593C16.4942 19.8221 14.3404 20.9971 12.3561 22.0676C12.1338 22.1875 11.8662 22.1875 11.6439 22.0676C9.65956 20.9971 7.5058 19.8221 5.85876 18.2593C4.18351 16.6697 3 14.6493 3 11.912V6.22038C3 5.46713 3.482 4.79838 4.1966 4.56018L11.4466 2.14352ZM15.2803 10.0303C15.5732 9.73744 15.5732 9.26256 15.2803 8.96967C14.9874 8.67678 14.5126 8.67678 14.2197 8.96967L11 12.1893L9.78033 10.9697C9.48744 10.6768 9.01256 10.6768 8.71967 10.9697C8.42678 11.2626 8.42678 11.7374 8.71967 12.0303L10.4697 13.7803C10.6103 13.921 10.8011 14 11 14C11.1989 14 11.3897 13.921 11.5303 13.7803L15.2803 10.0303Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconShieldCheck;\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,gBAAk4B,EAAl4B,IAAqB,EAAO,UAAU,sCAAqC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kvBAAkvB,KAAK,eAAc,CAAI,GAG53B",
  "debugId": "BFF7B3EAB4DFDB0D64756E2164756E21",
  "names": []
}