UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.08 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 = ["M6.403 13.834a.75.75 0 0 1 .849-.637 5.3 5.3 0 0 0 1.496 0 .75.75 0 0 1 .212 1.485 6.8 6.8 0 0 1-1.92 0 .75.75 0 0 1-.637-.848m-3.657-2.838a.75.75 0 0 1 1.05.149c.301.4.658.757 1.058 1.058a.75.75 0 0 1-.9 1.2 6.8 6.8 0 0 1-1.357-1.358.75.75 0 0 1 .15-1.05m9.457.149a.75.75 0 0 1 1.2.9 6.8 6.8 0 0 1-1.357 1.358.75.75 0 1 1-.9-1.2c.4-.3.757-.657 1.057-1.058M1.25 8q0-.49.067-.96a.75.75 0 0 1 1.486.211 5.3 5.3 0 0 0 0 1.497.75.75 0 0 1-1.486.211A7 7 0 0 1 1.25 8m12 0a5 5 0 0 0-.053-.749.75.75 0 0 1 1.486-.211 6.8 6.8 0 0 1 0 1.92.75.75 0 0 1-1.486-.212A5 5 0 0 0 13.25 8M3.954 2.596a.75.75 0 0 1 .9 1.2c-.4.3-.757.657-1.057 1.058a.75.75 0 0 1-1.2-.9 6.8 6.8 0 0 1 1.357-1.358m7.042.15a.75.75 0 0 1 1.05-.15c.514.386.972.843 1.357 1.358a.75.75 0 0 1-1.2.9c-.3-.4-.657-.757-1.057-1.058a.75.75 0 0 1-.15-1.05M8 1.25q.488 0 .96.067a.75.75 0 0 1-.212 1.485 5.3 5.3 0 0 0-1.496 0 .75.75 0 0 1-.212-1.485q.472-.067.96-.067"]; export const CircleDashedIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "circle-dashed", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); CircleDashedIcon.displayName = "Blueprint6.Icon.Next.CircleDashedIcon"; export default CircleDashedIcon; //# sourceMappingURL=circle-dashed.js.map