react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 508 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgMergeCellsVertical = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M21 20a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1zm-2-9V5h-5.999v2H15l-3 3-3-3h2V5H5v6h2v2H5v6h6v-2H9l3-3 3 3h-1.999v2H19v-6h-2v-2zm-8 2H9v-2h2zm4 0h-2v-2h2z" />
</Svg>
);
export default SvgMergeCellsVertical;