Files
metabuilder/icons/react/fakemui/BellOff.tsx
2026-03-09 22:30:41 +00:00

11 lines
412 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const BellOff = (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" />
<line x1="40" y1="40" x2="216" y2="216" />
</Icon>
)