UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 611 B
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 3V5H13V6.04938C18.0533 6.5511 22 10.8147 22 16H2C2 10.8147 5.94668 6.5511 11 6.04938V5H9V3H15ZM23 20V18H1V20H23Z"/> </Svg>); }; Icon.displayName = 'ServiceBellFill'; /** * Remix Icon: Service Bell Fill * @see {@link https://remixicon.com/icon/service-bell-fill Remix Icon Docs} */ export const ServiceBellFill = memo(Icon);