react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 464 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgServiceBellLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M15 3H9v2h2v1.05C5.947 6.55 2 10.814 2 16v1h20v-1c0-5.185-3.947-9.449-9-9.95V5h2zm-3 5a8 8 0 0 1 7.938 7H4.062A8 8 0 0 1 12 8m11 12v-2H1v2z" />
</Svg>
);
export default SvgServiceBellLine;