@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 698 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M15 3H9V5H11V6.04938C5.94668 6.5511 2 10.8147 2 16V17H22V16C22 10.8147 18.0533 6.5511 13 6.04938V5H15V3ZM12 8C16.0796 8 19.446 11.0537 19.9381 15H4.06189C4.55399 11.0537 7.92038 8 12 8ZM23 20V18H1V20H23Z"/>
</Svg>);
};
Icon.displayName = 'ServiceBellLine';
/**
* Remix Icon: Service Bell Line
* @see {@link https://remixicon.com/icon/service-bell-line Remix Icon Docs}
*/
export const ServiceBellLine = memo(Icon);