{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBellOff/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 IconBellOff: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bell-off, notification off, activity, alert\"><path d=\"M16.4393 17.5L20.7197 21.7803C21.0126 22.0732 21.4874 22.0732 21.7803 21.7803C22.0732 21.4874 22.0732 21.0126 21.7803 20.7197L3.28033 2.21967C2.98744 1.92678 2.51256 1.92678 2.21967 2.21967C1.92678 2.51256 1.92678 2.98744 2.21967 3.28033L4.93779 5.99845C4.33931 6.99518 3.94439 8.13256 3.81326 9.35647L3.0824 16.6755C3.03831 17.117 3.38501 17.5 3.82869 17.5H16.4393Z\" fill=\"currentColor\"/><path d=\"M20.9177 16.6755C20.9473 16.9712 20.8014 17.2407 20.5686 17.3864L6.92897 3.74684C8.3325 2.64893 10.097 2 12 2C16.2078 2 19.7385 5.17264 20.1868 9.35648L20.9177 16.6755Z\" fill=\"currentColor\"/><path d=\"M7.41608 19C8.18763 20.7659 9.94971 22 12 22C14.0504 22 15.8124 20.7659 16.584 19H7.41608Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBellOff;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAsyB,EAAtyB,IAAqB,EAAO,UAAU,+CAA8C,gBAAC,OAAD,CAAM,EAAE,iXAAiX,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2KAA2K,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6FAA6F,KAAK,eAAc,CAAI,GAGhyB",
  "debugId": "D4787FA2731E834164756E2164756E21",
  "names": []
}