UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 418 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgSaveLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M7 19v-6h10v6h2V7.828L16.172 5H5v14h2zM4 3h13l4 4v13a1 1 0 01-1 1H4a1 1 0 01-1-1V4a1 1 0 011-1zm5 12v4h6v-4H9z" /> </Svg> ); } export default SvgSaveLine;