iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 732 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgFloppyDisc(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M6.75 19.25h10.5a2 2 0 002-2V9.828a2 2 0 00-.586-1.414l-3.078-3.078a2 2 0 00-1.414-.586H6.75a2 2 0 00-2 2v10.5a2 2 0 002 2z" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.75 19v-3.25a1 1 0 011-1h4.5a1 1 0 011 1V19M8.75 5v3.25" })));
}
export default SvgFloppyDisc;