BellIcon.jsx

 1export function BellIcon(props) {
 2  return (
 3    <svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
 4      <path
 5        strokeLinecap="round"
 6        strokeLinejoin="round"
 7        d="M4.438 8.063a5.563 5.563 0 0 1 11.125 0v2.626c0 1.182.34 2.34.982 3.332L17.5 15.5h-15l.955-1.479c.641-.993.982-2.15.982-3.332V8.062Z"
 8      />
 9      <path
10        fill="none"
11        strokeLinecap="round"
12        strokeLinejoin="round"
13        d="M7.5 15.5v0a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v0"
14      />
15    </svg>
16  )
17}