@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 447 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" viewBox="0 0 24 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 1v16Zm-2-9V5h-5.999v2H15l-3 3-3-3h2V5H5v6h2v2H5v6h6v-2H9l3-3 3 3h-1.999v2H19v-6h-2v-2h2Zm-8 2H9v-2h2v2Zm4 0h-2v-2h2v2Z" />
</Svg>
);
export default SvgMergeCellsVertical;