@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.9 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/*
* Copyright 2026 Palantir Technologies, Inc. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import * as React from "react";
import { SvgIconContainerNext } from "../../svgIconContainerNext";
const PATHS = ["M12.01 8.976a2.6 2.6 0 0 1 1.384 0c.52.143.995.445 1.364.874.369.428.616.965.705 1.544a3.2 3.2 0 0 1-.205 1.708 2.96 2.96 0 0 1-1.04 1.301 2.7 2.7 0 0 1-1.318.472l-.2.008H9.1a1.54 1.54 0 0 1-1.12-.495 1.8 1.8 0 0 1-.48-1.233c0-.466.176-.91.48-1.231.23-.244.517-.403.824-.466l.16.327a.5.5 0 0 0 .947-.178c.05-.585.26-1.139.6-1.595s.795-.794 1.305-.976zM10.676 8.5a3.9 3.9 0 0 0-.967.914c-.231.31-.415.654-.55 1.018l-.06-.004c-.7 0-1.364.297-1.848.81a2.8 2.8 0 0 0-.751 1.917l.005.094H2.25a.75.75 0 0 1-.75-.75V8.5zM4 10a1 1 0 1 0 0 2h.007a1 1 0 0 0 0-2zm9.75-7.251a.75.75 0 0 1 .75.75V7.5h-13V3.499a.75.75 0 0 1 .75-.75zM4 4a1 1 0 0 0 0 2h.007a1 1 0 0 0 0-2zm3.25 0a1 1 0 0 0 0 2h.007a1 1 0 0 0 0-2z"];
export const ServerCloudFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "server-cloud-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
ServerCloudFilledIcon.displayName = "Blueprint6.Icon.Next.ServerCloudFilledIcon";
export default ServerCloudFilledIcon;
//# sourceMappingURL=server-cloud-filled.js.map