@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 643 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="M8 20V14H16V20H19V4H5V20H8ZM10 20H14V16H10V20ZM21 20H23V22H1V20H3V3C3 2.44772 3.44772 2 4 2H20C20.5523 2 21 2.44772 21 3V20ZM11 8V6H13V8H15V10H13V12H11V10H9V8H11Z"/>
</Svg>);
};
Icon.displayName = 'HospitalLine';
/**
* Remix Icon: Hospital Line
* @see {@link https://remixicon.com/icon/hospital-line Remix Icon Docs}
*/
export const HospitalLine = memo(Icon);