UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.56 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 = ["M7.737 8.075a.68.68 0 0 1 .583.314l3 4.75a.676.676 0 0 1-.57 1.035H5a.675.675 0 0 1-.584-1.012l2.75-4.75.049-.074a.68.68 0 0 1 .522-.263m-1.567 4.75h3.356l-1.752-2.773zm7.155-7.075a1.575 1.575 0 1 0-3.15 0 1.575 1.575 0 0 0 3.15 0M6.25 1.825c.373 0 .675.302.675.675v4a.675.675 0 0 1-.675.674h-4a.675.675 0 0 1-.675-.674v-4c0-.373.302-.675.675-.675zm-3.325 4h2.65v-2.65h-2.65zm11.75-.075a2.925 2.925 0 1 1-5.85 0 2.925 2.925 0 0 1 5.85 0"]; export const ShapesIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "shapes", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); ShapesIcon.displayName = "Blueprint6.Icon.Next.ShapesIcon"; export default ShapesIcon; //# sourceMappingURL=shapes.js.map