@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 784 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="M3 19V5.70046C3 5.27995 3.26307 4.90437 3.65826 4.76067L13.3291 1.24398C13.5886 1.14961 13.8755 1.28349 13.9699 1.54301C13.9898 1.59778 14 1.65561 14 1.71388V6.6667L20.3162 8.77211C20.7246 8.90822 21 9.29036 21 9.72079V19H23V21H1V19H3ZM5 19H12V3.85543L5 6.40089V19ZM19 19V10.4416L14 8.77488V19H19Z"/>
</Svg>);
};
Icon.displayName = 'Building2Line';
/**
* Remix Icon: Building 2 Line
* @see {@link https://remixicon.com/icon/building-2-line Remix Icon Docs}
*/
export const Building2Line = memo(Icon);