react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 477 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDoorOpenLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...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>
);
export default SvgDoorOpenLine;