{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShieldCrossed/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 IconShieldCrossed: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"shield-crossed, security, protection\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.8141 2.35455C11.5839 2.09796 12.4161 2.09796 13.1859 2.35455L19.1196 4.33247C20.2426 4.70678 21 5.75767 21 6.94135V11.9122C21 14.6495 19.8165 16.6699 18.1412 18.2595C16.4942 19.8223 14.3404 20.9973 12.3561 22.0678C12.1338 22.1877 11.8662 22.1877 11.6439 22.0678C9.65956 20.9973 7.5058 19.8223 5.85876 18.2595C4.18351 16.6699 3 14.6495 3 11.9122V6.94135C3 5.75767 3.75743 4.70678 4.88037 4.33247L10.8141 2.35455ZM13.6941 14.2785C13.9862 14.5721 14.4611 14.5734 14.7548 14.2812C15.0484 13.9891 15.0497 13.5142 14.7575 13.2206L13.046 11.5001L14.7576 9.77943C15.0497 9.48576 15.0484 9.01089 14.7547 8.71878C14.4611 8.42666 13.9862 8.42793 13.6941 8.7216L11.9881 10.4367L10.2817 8.72135C9.98957 8.42769 9.5147 8.42646 9.22105 8.71859C8.92739 9.01071 8.92615 9.48559 9.21828 9.77924L10.9303 11.5002L9.21825 13.2214C8.92614 13.5151 8.9274 13.9899 9.22108 14.282C9.51475 14.5742 9.98962 14.5729 10.2817 14.2792L11.9882 12.5636L13.6941 14.2785Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconShieldCrossed;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAAgkC,EAAhkC,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,86BAA86B,KAAK,eAAc,CAAI,GAG1jC",
  "debugId": "1A4930AB57059B2A64756E2164756E21",
  "names": []
}