@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.31 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 = ["M8 1.25c1.451 0 2.912.235 4.034.629.558.196 1.073.445 1.463.757.379.302.753.758.753 1.365v8c0 .607-.374 1.063-.753 1.365-.39.312-.905.561-1.463.757-1.122.394-2.583.628-4.034.628s-2.912-.234-4.034-.628c-.558-.196-1.073-.445-1.463-.757-.379-.302-.753-.758-.753-1.365v-8c0-.607.374-1.063.753-1.365.39-.312.905-.561 1.463-.757C5.088 1.485 6.549 1.25 8 1.25m4.75 8.574q-.34.166-.716.299c-1.122.394-2.583.628-4.034.628s-2.912-.234-4.034-.628a7 7 0 0 1-.716-.299v2.163c.007.019.042.09.188.206.21.167.553.35 1.025.515.938.33 2.227.543 3.537.543s2.6-.213 3.537-.543c.472-.166.815-.348 1.024-.515.146-.116.182-.187.189-.206zm0-4q-.34.166-.716.3c-1.122.393-2.583.627-4.034.627s-2.912-.234-4.034-.628a7 7 0 0 1-.716-.299v2.163c.007.019.042.09.188.206.21.167.553.35 1.025.515.938.33 2.227.543 3.537.543s2.6-.213 3.537-.543c.472-.166.815-.348 1.024-.515.146-.116.182-.187.189-.206zM8 2.751c-1.31 0-2.6.213-3.537.543-.472.166-.815.348-1.025.515A.7.7 0 0 0 3.257 4a.7.7 0 0 0 .181.192c.21.167.553.35 1.025.515.938.33 2.227.543 3.537.543s2.6-.213 3.537-.543c.472-.166.815-.348 1.024-.515A.7.7 0 0 0 12.743 4a.7.7 0 0 0-.181-.192c-.21-.167-.553-.35-1.025-.515C10.6 2.964 9.31 2.751 8 2.751"];
export const DatabaseIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "database", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
DatabaseIcon.displayName = "Blueprint6.Icon.Next.DatabaseIcon";
export default DatabaseIcon;
//# sourceMappingURL=database.js.map