UNPKG

@metamask/design-system-react

Version:
7 lines 497 B
import * as React from "react"; import { forwardRef } from "react"; const SvgSaveFilled = (props, ref) => React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", ref: ref, ...props }, React.createElement("path", { d: "M5 21V5q0-.824.588-1.412C6.176 2.999 6.45 3 7 3h10q.824 0 1.413.588C19.002 4.175 19 4.45 19 5v16l-7-3z" })); const ForwardRef = forwardRef(SvgSaveFilled); export default ForwardRef; //# sourceMappingURL=SaveFilled.mjs.map