{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShieldAccess/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 IconShieldAccess: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"shield-access, full-access\"><path d=\"M3.75 5.75L12 2.25L20.25 5.75V13C20.25 17.5563 16.5563 21.25 12 21.25C7.44365 21.25 3.75 17.5563 3.75 13V5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><circle cx=\"11.9984\" cy=\"15.7\" r=\"1.1\" fill=\"currentColor\"/><path d=\"M11.28 13C11.76 13 12.24 13 12.72 13C12.7233 12.9083 12.7267 12.8167 12.73 12.725C12.79 11.075 12.85 9.425 12.91 7.775C12.9133 7.68333 12.9167 7.59167 12.92 7.5C12.3067 7.5 11.6933 7.5 11.08 7.5C11.0833 7.59167 11.0867 7.68333 11.09 7.775C11.15 9.425 11.21 11.075 11.27 12.725C11.2733 12.8167 11.2767 12.9083 11.28 13Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconShieldAccess;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAwpB,EAAxpB,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,iHAAiH,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,OAAO,EAAE,MAAM,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iUAAiU,KAAK,eAAc,CAAI,GAGlpB",
  "debugId": "1606E0D73C88933764756E2164756E21",
  "names": []
}