{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBell2/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 IconBell2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bell-2, notification, activity, alert\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C8.13655 2 4.94782 5.0198 4.75447 8.87114L4.58053 12.3148C4.56437 12.6348 4.48004 12.9476 4.3332 13.2324L3.19525 15.4394C3.06695 15.6882 3 15.9641 3 16.2441C3 17.2138 3.78616 18 4.75593 18H7.30888C7.66846 20.267 9.63185 22 12 22C14.3682 22 16.3315 20.267 16.6911 18H19.2441C20.2138 18 21 17.2138 21 16.2441C21 15.9641 20.9331 15.6882 20.8047 15.4394L19.6668 13.2324C19.52 12.9476 19.4356 12.6348 19.4195 12.3148L19.2455 8.87139C19.0522 5.02005 15.8634 2 12 2ZM12 20.5C10.4632 20.5 9.17555 19.4333 8.83697 18H15.163C14.8245 19.4333 13.5368 20.5 12 20.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBell2;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAmsB,EAAnsB,IAAqB,EAAO,UAAU,yCAAwC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gjBAAgjB,KAAK,eAAc,CAAI,GAG7rB",
  "debugId": "24A77C29012F610E64756E2164756E21",
  "names": []
}