react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 466 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgComputerFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M13 18v2h4v2H7v-2h4v-2H2.992A1 1 0 0 1 2 16.992V4.008C2 3.451 2.455 3 2.992 3h18.016c.548 0 .992.449.992 1.007v12.985c0 .557-.455 1.008-.992 1.008z" />
</Svg>
);
export default SvgComputerFill;