{
  "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.93764 5.9983C4.33911 6.99507 3.94416 8.1325 3.81302 9.35647L3.19194 15.5761C3.08907 16.6062 3.89804 17.5 4.93328 17.5H16.4393Z\" fill=\"currentColor\"/><path d=\"M20.8077 15.5761C20.8657 16.1569 20.6338 16.6944 20.2349 17.0528L6.92886 3.74673C8.33237 2.64889 10.0968 2 11.9998 2C16.2076 2 19.7383 5.17264 20.1866 9.35648L20.8077 15.5761Z\" fill=\"currentColor\"/><path d=\"M7.41583 19C8.18739 20.7659 9.94947 22 11.9998 22C14.0501 22 15.8122 20.7659 16.5837 19H7.41583Z\" 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,gBAAmzB,EAAnzB,IAAqB,EAAO,UAAU,+CAA8C,gBAAC,OAAD,CAAM,EAAE,iXAAiX,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kLAAkL,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mGAAmG,KAAK,eAAc,CAAI,GAG7yB",
  "debugId": "FB0C23E9A657A88664756E2164756E21",
  "names": []
}