{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShield/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 IconShield: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"shield, security, protection\"><path d=\"M13.1859 2.35455C12.4161 2.09796 11.5839 2.09796 10.8141 2.35455L4.88037 4.33247C3.75743 4.70678 3 5.75767 3 6.94135V11.9122C3 14.6495 4.18351 16.6699 5.85876 18.2595C7.5058 19.8223 9.65956 20.9973 11.6439 22.0678C11.8662 22.1877 12.1338 22.1877 12.3561 22.0678C14.3404 20.9973 16.4942 19.8223 18.1412 18.2595C19.8165 16.6699 21 14.6495 21 11.9122V6.94135C21 5.75767 20.2426 4.70678 19.1196 4.33247L13.1859 2.35455Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconShield;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAsgB,EAAtgB,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,kaAAka,KAAK,eAAc,CAAI,GAGhgB",
  "debugId": "63679DB2C943CF3364756E2164756E21",
  "names": []
}