@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 881 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconFolderUploadFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M4 3a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.586a1 1 0 0 1-.707-.293L9.586 3.586A2 2 0 0 0 8.172 3zm11.03 9.78a.75.75 0 0 1-1.06 0l-1.22-1.22v4.69a.75.75 0 0 1-1.5 0v-4.69l-1.22 1.22a.75.75 0 1 1-1.06-1.06l2.5-2.5a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1 0 1.06", clipRule: "evenodd" }) }));
};
IconFolderUploadFilled.iconName = "folder-upload--filled";
export default IconFolderUploadFilled;