UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 504 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgInsertColumnRight(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M10 3a1 1 0 011 1v16a1 1 0 01-1 1H4a1 1 0 01-1-1V4a1 1 0 011-1h6zM9 5H5v14h4V5zm9 2a5 5 0 11-.001 10.001A5 5 0 0118 7zm1 2h-2v1.999L15 11v2l2-.001V15h2v-2.001L21 13v-2l-2-.001V9z" /> </Svg> ); } export default SvgInsertColumnRight;