18 lines
692 B
TypeScript
18 lines
692 B
TypeScript
import * as React from "react"
|
|
import {SVGProps} from "react"
|
|
|
|
const Bell = (props: SVGProps<SVGSVGElement>) => (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={24}
|
|
height={24}
|
|
fill="#FFF"
|
|
viewBox="0 -960 960 960"
|
|
{...props}
|
|
>
|
|
<path
|
|
d="M180-204.62v-59.99h72.31v-298.47q0-80.69 49.81-142.69 49.8-62 127.88-79.31V-810q0-20.83 14.57-35.42Q459.14-860 479.95-860q20.82 0 35.43 14.58Q530-830.83 530-810v24.92q78.08 17.31 127.88 79.31 49.81 62 49.81 142.69v298.47H780v59.99H180ZM479.93-92.31q-29.85 0-51.04-21.24-21.2-21.24-21.2-51.07h144.62q0 29.93-21.26 51.12-21.26 21.19-51.12 21.19Z"/>
|
|
</svg>
|
|
)
|
|
export default Bell
|