UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.82 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 = ["M4.895 7.025a.75.75 0 0 1 .764.032l.591.383v1.79l-1.037-.674L2.5 10.015v2.267l1.821 1.492 2.497-1.46q.178.163.4.275l1.092.546a.8.8 0 0 1-.181.15l-3.5 2.048a.75.75 0 0 1-.855-.067l-2.5-2.047A.75.75 0 0 1 1 12.638v-3.07c0-.277.152-.53.395-.662zm6.39-2.72a.75.75 0 0 1 .574.06l2.75 1.5a.75.75 0 0 1 .391.658v4.25a.75.75 0 0 1-.472.697l-3.75 1.5a.75.75 0 0 1-.613-.026l-2.5-1.25a.75.75 0 0 1-.415-.67v-4.5c0-.3.179-.572.454-.69l3.5-1.5zM8.75 7.018v3.542l1.784.892 2.966-1.186V6.968l-2.04-1.113zM4.903 1.085a.75.75 0 0 1 .788.059l2.5 1.823a.75.75 0 0 1 .309.605v.833l-1.19.51a2 2 0 0 0-.31.171V3.953L5.184 2.63 2.5 4.026v2.185l.722.577-1.438.773-.503-.403A.75.75 0 0 1 1 6.572v-3a.75.75 0 0 1 .403-.665z"]; export const CubesIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "cubes", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); CubesIcon.displayName = "Blueprint6.Icon.Next.CubesIcon"; export default CubesIcon; //# sourceMappingURL=cubes.js.map