UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 633 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="M1.998 21v-2h2V4.835a1 1 0 0 1 .821-.984l9.472-1.722a.6.6 0 0 1 .707.59v1.28l4 .001a1 1 0 0 1 1 1v14h2v2h-4V6h-3v15zm11-16.603-7 1.272V19h7zm-1 6.603v2h-2v-2z"/> </Svg>); }); Icon.displayName = 'DoorOpenLine'; /** * Remix Icon: Door Open Line * @see {@link https://remixicon.com/icon/door-open-line Remix Icon Docs} */ export const DoorOpenLine = Icon;