UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.1 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 = ["M14 12.82c-.14.217-.32.4-.503.546-.39.312-.905.561-1.463.757-.975.343-2.207.563-3.466.615a15 15 0 0 1-1.137 0c-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.82V9.518c.379.255.844.477 1.357.662 1.28.46 2.963.737 4.643.737s3.363-.278 4.643-.737A6.2 6.2 0 0 0 14 9.518zM14 8l-.016.102c-.034.114-.131.268-.357.452-.294.24-.743.476-1.322.684-1.155.415-2.721.679-4.305.679s-3.15-.264-4.305-.679c-.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 DatabaseFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "database-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); DatabaseFilledIcon.displayName = "Blueprint6.Icon.Next.DatabaseFilledIcon"; export default DatabaseFilledIcon; //# sourceMappingURL=database-filled.js.map