react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 499 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgInsertColumnLeft = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M20 3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm-1 2h-4v14h4zM6 7a5 5 0 1 1 0 10A5 5 0 0 1 6 7m1 2H5v1.999L3 11v2l2-.001V15h2v-2.001L9 13v-2l-2-.001z" />
</Svg>
);
export default SvgInsertColumnLeft;