UNPKG

@blueprintjs/icons

Version:

Components, fonts, icons, and css files for creating and displaying icons.

24 lines 2.36 kB
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 = ["M10.884 8.434a3.47 3.47 0 0 1 2.701.213 3.6 3.6 0 0 1 1.125.905 3.43 3.43 0 0 1 .75 2.69c-.246 1.66-1.691 3.008-3.46 3.008H9a2.4 2.4 0 0 1-1.527-.512h-.006a2.3 2.3 0 0 1-.306-.295c-.415-.482-.604-1.102-.604-1.692 0-.517.144-1.056.459-1.506l.145-.186q.071-.082.15-.159c.387-.372.908-.606 1.527-.641a3.55 3.55 0 0 1 2.046-1.825M2 9.518c.379.255.844.477 1.357.662.795.285 1.746.498 2.755.62a3.66 3.66 0 0 0-.555 1.95v.001c0 .618.155 1.276.503 1.862a11 11 0 0 1-2.094-.49c-.558-.196-1.073-.445-1.463-.757A2.3 2.3 0 0 1 2 12.82zm12-1.782a4.47 4.47 0 0 0-3.19-.325l-.245.074a4.5 4.5 0 0 0-2.357 1.853c-.454.1-.869.283-1.229.54-1.22-.085-2.379-.315-3.284-.64-.579-.208-1.028-.444-1.322-.684C2.073 8.308 2 8.118 2 8V4.685c.379.255.844.476 1.357.66 1.28.46 2.963.738 4.643.738s3.363-.278 4.643-.737A6.2 6.2 0 0 0 14 4.685zM8 1.25c1.451 0 2.912.235 4.034.629.558.196 1.073.445 1.463.757.182.145.362.327.501.543-.005.118-.08.304-.371.54-.294.24-.743.478-1.322.686-1.155.415-2.722.678-4.305.678s-3.15-.263-4.305-.678c-.58-.208-1.028-.445-1.322-.685-.29-.237-.367-.423-.372-.541a2.3 2.3 0 0 1 .502-.543c.39-.312.905-.561 1.463-.757C5.088 1.485 6.549 1.25 8 1.25"]; export const DatabaseCloudFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "database-cloud-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); DatabaseCloudFilledIcon.displayName = "Blueprint6.Icon.Next.DatabaseCloudFilledIcon"; export default DatabaseCloudFilledIcon; //# sourceMappingURL=database-cloud-filled.js.map