@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 626 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M12.673 1.612 20.8 9h-2.973L12 3.703 6 9.158V19h5v2H5a1 1 0 0 1-1-1v-9H1l10.327-9.388a1 1 0 0 1 1.346 0M14 11h9v7h-9zm2 2v3h5v-3zm8 8H13v-2h11z"/>
</Svg>);
});
Icon.displayName = 'HomeOfficeLine';
/**
* Remix Icon: Home Office Line
* @see {@link https://remixicon.com/icon/home-office-line Remix Icon Docs}
*/
export const HomeOfficeLine = Icon;