react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 502 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgInsertColumnRight = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M10 3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zM9 5H5v14h4zm9 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10m1 2h-2v1.999L15 11v2l2-.001V15h2v-2.001L21 13v-2l-2-.001z" />
</Svg>
);
export default SvgInsertColumnRight;