{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShieldBreak/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 IconShieldBreak: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"shield-break, not-secure\"><path d=\"M17.0653 15.1142L2.22028 3.16577C1.89761 2.90605 1.42548 2.95709 1.16577 3.27977C0.906052 3.60245 0.957092 4.07457 1.27977 4.33428L3.40356 6.04368C3.14329 6.55808 3 7.13546 3 7.73606V13C3 17.9705 7.02944 22 12 22C14.8442 22 17.3802 20.6807 19.0295 18.6207L21.7798 20.8343C22.1024 21.094 22.5746 21.043 22.8343 20.7203C23.094 20.3976 23.043 19.9255 22.7203 19.6658L19.8692 17.371C19.8739 17.3624 19.8787 17.3538 19.8834 17.3452L17.0653 15.1142Z\" fill=\"currentColor\"/><path d=\"M21 13C21 14.0355 20.8251 15.0302 20.5032 15.9562L5.7542 4.08501L10.5354 2.05661C11.4714 1.65952 12.5286 1.65952 13.4646 2.05661L18.7146 4.28388C20.1001 4.8717 21 6.23096 21 7.73606V13Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconShieldBreak;\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,gBAAuvB,EAAvvB,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,EAAE,8bAA8b,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4LAA4L,KAAK,eAAc,CAAI,GAGjvB",
  "debugId": "BFB2EFDF533C139564756E2164756E21",
  "names": []
}