@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 338 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFullscreenExitLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M18 7h4v2h-6V3h2v4ZM8 9H2V7h4V3h2v6Zm10 8v4h-2v-6h6v2h-4ZM8 15v6H6v-4H2v-2h6Z" />
</Svg>
);
export default SvgFullscreenExitLine;