react-oddball-icons
Version:
Odd corporate logos to spice up your website
19 lines (18 loc) • 618 B
JSX
import * as React from "react";
const SvgBellAlt = (props) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 64 64"
{...props}
>
<path
stroke="#000"
strokeWidth={2}
d="M37.668 56.668A6 6 0 0 0 41.302 49L30 53.034a6 6 0 0 0 7.668 3.634ZM53.172 39.478 18.119 47.68s2.527-6.754-.206-18.438c-2.05-8.763 2.652-14.999 10.442-16.821s14.77 1.679 16.821 10.442c2.734 11.685 7.996 16.615 7.996 16.615ZM33.688 23.274l5.808 5.501M38.8 23 34 29.4M23.688 24.274l5.808 5.501M28.8 24 24 30.4"
/>
</svg>
);
export default SvgBellAlt;