@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 967 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconFileUpload = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("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", { d: "M12.002 19a.75.75 0 0 1-.75-.75v-3.439l-.97.97a.75.75 0 1 1-1.06-1.062l2.25-2.248a.75.75 0 0 1 1.06 0l2.248 2.249a.75.75 0 1 1-1.06 1.06l-.968-.968v3.438a.75.75 0 0 1-.75.75" }), _jsx("path", { fillRule: "evenodd", d: "M20 10.25V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h5.75zm-1.5.75H13a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5v16a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5zm-1.371-1.5L12.5 4.871V9a.5.5 0 0 0 .5.5z", clipRule: "evenodd" })] }));
};
IconFileUpload.iconName = "file-upload";
export default IconFileUpload;