UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 539 B
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="M10 10.111V1l11 6v14H3V7zm2-5.742v8.82l-7-3.111V19h14V8.187z"/> </Svg>); }); Icon.displayName = 'Building3Line'; /** * Remix Icon: Building 3 Line * @see {@link https://remixicon.com/icon/building-3-line Remix Icon Docs} */ export const Building3Line = Icon;