@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.3 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.87 7.916a.501.501 0 0 1 .855.483l-.032.094v.001l-.749 2.247h1.198a.55.55 0 0 1 .417.908l-1.907 2.223-1.022 1.194a.5.5 0 0 1-.855-.483l.78-2.342h-1.197a.55.55 0 0 1-.417-.908zM2 9.518c.379.255.844.477 1.357.662 1.28.46 2.963.737 4.643.737q.521-.002 1.038-.038c-.592.947.01 2.222 1.134 2.35l-.345 1.038a1.5 1.5 0 0 0-.073.37 14 14 0 0 1-2.323.101c-1.259-.052-2.49-.272-3.465-.615-.558-.196-1.073-.445-1.463-.757A2.3 2.3 0 0 1 2 12.82zm12-2.577-.01-.005-.002-.001-.119-.06a1.5 1.5 0 0 0-1.758.39L9.953 9.783c-.629.085-1.29.134-1.953.134-1.584 0-3.15-.264-4.305-.679-.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 DatabaseLightningFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "database-lightning-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
DatabaseLightningFilledIcon.displayName = "Blueprint6.Icon.Next.DatabaseLightningFilledIcon";
export default DatabaseLightningFilledIcon;
//# sourceMappingURL=database-lightning-filled.js.map