@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 2.62 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconGradientLinear = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { viewBox: "0 0 20 20", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M7 6C7 6.55228 6.55228 7 6 7C5.44772 7 5 6.55228 5 6C5 5.44772 5.44772 5 6 5C6.55228 5 7 5.44772 7 6Z" }), _jsx("path", { d: "M6 15C6.55228 15 7 14.5523 7 14C7 13.4477 6.55228 13 6 13C5.44772 13 5 13.4477 5 14C5 14.5523 5.44772 15 6 15Z" }), _jsx("path", { d: "M7 10C7 10.5523 6.55228 11 6 11C5.44772 11 5 10.5523 5 10C5 9.44772 5.44772 9 6 9C6.55228 9 7 9.44772 7 10Z" }), _jsx("path", { d: "M9.04199 8.875C9.52524 8.875 9.91699 8.48325 9.91699 8C9.91699 7.51675 9.52524 7.125 9.04199 7.125C8.55874 7.125 8.16699 7.51675 8.16699 8C8.16699 8.48325 8.55874 8.875 9.04199 8.875Z" }), _jsx("path", { d: "M12.584 6C12.584 6.41421 12.2482 6.75 11.834 6.75C11.4198 6.75 11.084 6.41421 11.084 6C11.084 5.58579 11.4198 5.25 11.834 5.25C12.2482 5.25 12.584 5.58579 12.584 6Z" }), _jsx("path", { d: "M11.834 14.75C12.2482 14.75 12.584 14.4142 12.584 14C12.584 13.5858 12.2482 13.25 11.834 13.25C11.4198 13.25 11.084 13.5858 11.084 14C11.084 14.4142 11.4198 14.75 11.834 14.75Z" }), _jsx("path", { d: "M12.584 10C12.584 10.4142 12.2482 10.75 11.834 10.75C11.4198 10.75 11.084 10.4142 11.084 10C11.084 9.58579 11.4198 9.25 11.834 9.25C12.2482 9.25 12.584 9.58579 12.584 10Z" }), _jsx("path", { d: "M14.376 8.625C14.7212 8.625 15.001 8.34518 15.001 8C15.001 7.65482 14.7212 7.375 14.376 7.375C14.0308 7.375 13.751 7.65482 13.751 8C13.751 8.34518 14.0308 8.625 14.376 8.625Z" }), _jsx("path", { d: "M15 12C15 12.3452 14.7202 12.625 14.375 12.625C14.0298 12.625 13.75 12.3452 13.75 12C13.75 11.6548 14.0298 11.375 14.375 11.375C14.7202 11.375 15 11.6548 15 12Z" }), _jsx("path", { d: "M9.04199 12.875C9.52524 12.875 9.91699 12.4832 9.91699 12C9.91699 11.5168 9.52524 11.125 9.04199 11.125C8.55874 11.125 8.16699 11.5168 8.16699 12C8.16699 12.4832 8.55874 12.875 9.04199 12.875Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 3C3.89543 3 3 3.89543 3 5V15C3 16.1046 3.89543 17 5 17H15C16.1046 17 17 16.1046 17 15V5C17 3.89543 16.1046 3 15 3H5ZM15 4H5C4.44772 4 4 4.44772 4 5V15C4 15.5523 4.44772 16 5 16H15C15.5523 16 16 15.5523 16 15V5C16 4.44772 15.5523 4 15 4Z" })] }));
};
IconGradientLinear.iconName = "gradient-linear";
export default IconGradientLinear;