@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 890 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconFileUploadFilled = (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", { fillRule: "evenodd", d: "M11 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-9h-7a2 2 0 0 1-2-2zm.252 16.25a.75.75 0 0 0 1.5 0v-3.438l.968.968a.75.75 0 1 0 1.06-1.06l-2.248-2.249a.75.75 0 0 0-1.06 0l-2.25 2.249a.75.75 0 1 0 1.06 1.06l.97-.969z", clipRule: "evenodd" }), _jsx("path", { d: "M19.25 9.5 12.5 2.75V9a.5.5 0 0 0 .5.5z" })] }));
};
IconFileUploadFilled.iconName = "file-upload--filled";
export default IconFileUploadFilled;