mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
362 B
TypeScript
10 lines
362 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Bell = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M56.2 104a71.9 71.9 0 0 1 72.3-72c39.6.3 71.3 33.2 71.3 72.9V112c0 35.8 7.5 56.6 14.1 68a8 8 0 0 1-6.9 12H49a8 8 0 0 1-6.9-12c6.6-11.4 14.1-32.2 14.1-68Z" />
|
|
<path d="M96 192v8a32 32 0 0 0 64 0v-8" />
|
|
</Icon>
|
|
)
|