react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 465 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgWindowsLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M21 2.5v19l-18-2v-15l18-2zm-2 10.499L12 13v5.487l7 .778V13zm-14 4.71l5 .556V13l-5-.001v4.71zM19 11V4.735l-7 .777V11l7-.001zm-9-5.265L5 6.29V11h5V5.734z" />
</Svg>
);
}
export default SvgWindowsLine;