@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.64 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 = ["M5.8 9.702v2.063l-1.788-.98a.51.51 0 0 1-.262-.44V8.498zm2.95.643a.5.5 0 0 1-.262.44l-1.687.924V9.707L8.75 8.596zM6.313 6.582a.5.5 0 0 1 .122.031l.057.027 1.872 1.024-2.06 1.175-2.081-1.223 1.785-.976a.5.5 0 0 1 .242-.062zM12.5 1.75c.69 0 1.25.56 1.25 1.25v8c0 .69-.56 1.25-1.25 1.25h-1.25V13c0 .69-.56 1.25-1.25 1.25H2.5c-.69 0-1.25-.56-1.25-1.25V5.5c0-.69.56-1.25 1.25-1.25h.75V3c0-.69.56-1.25 1.25-1.25zm-9.75 11h7v-7h-7zm2-8.5H10c.69 0 1.25.56 1.25 1.25v5.25h1v-7.5h-7.5z"];
export const CubeCutoutsIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "cube-cutouts", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
CubeCutoutsIcon.displayName = "Blueprint6.Icon.Next.CubeCutoutsIcon";
export default CubeCutoutsIcon;
//# sourceMappingURL=cube-cutouts.js.map