{
  "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.90678 5.96744C4.29004 6.97157 3.88273 8.11985 3.75023 9.35647L3.08499 13.0926C2.67583 15.3906 4.44283 17.5 6.77692 17.5H16.4393Z\" fill=\"currentColor\"/><path d=\"M20.9156 13.0925C21.1546 14.4348 20.6511 15.7128 19.7258 16.5436L6.91724 3.73511C8.33242 2.64431 10.104 2 12.0002 2C16.208 2 19.802 5.17264 20.2502 9.35648L20.9156 13.0925Z\" fill=\"currentColor\"/><path d=\"M7.41624 19C8.1878 20.7659 9.94988 22 12.0002 22C14.0505 22 15.8126 20.7659 16.5842 19H7.41624Z\" 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,gBAAizB,EAAjzB,IAAqB,EAAO,UAAU,+CAA8C,gBAAC,OAAD,CAAM,EAAE,mXAAmX,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+KAA+K,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kGAAkG,KAAK,eAAc,CAAI,GAG3yB",
  "debugId": "CAF4CD9D1AF09E2E64756E2164756E21",
  "names": []
}