UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.15 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 = ["M9.074 13.396a.75.75 0 1 1 .291 1.471 7 7 0 0 1-2.73 0 .75.75 0 0 1 .29-1.472 5.5 5.5 0 0 0 2.15 0M2.386 10.85a.75.75 0 0 1 1.04.206c.401.6.918 1.117 1.518 1.518a.75.75 0 1 1-.834 1.246 7 7 0 0 1-1.93-1.93.75.75 0 0 1 .206-1.04m10.188.206a.75.75 0 1 1 1.246.834 7 7 0 0 1-1.93 1.93.75.75 0 1 1-.834-1.246 5.5 5.5 0 0 0 1.518-1.518M8 4.75a3.25 3.25 0 1 1 0 6.5 3.25 3.25 0 0 1 0-6.5M1.133 6.635a.75.75 0 0 1 1.471.29 5.5 5.5 0 0 0 0 2.15.75.75 0 1 1-1.471.29 7 7 0 0 1 0-2.73m12.852-.59a.75.75 0 0 1 .882.59 7 7 0 0 1 0 2.73.75.75 0 0 1-1.472-.29 5.5 5.5 0 0 0 0-2.15.75.75 0 0 1 .59-.88M4.11 2.18a.75.75 0 1 1 .834 1.246c-.6.401-1.116.918-1.518 1.518A.75.75 0 1 1 2.18 4.11a7 7 0 0 1 1.93-1.93m6.74.206a.75.75 0 0 1 1.04-.206 7 7 0 0 1 1.93 1.93.75.75 0 1 1-1.246.834 5.5 5.5 0 0 0-1.518-1.518.75.75 0 0 1-.206-1.04M8 1q.7 0 1.365.133a.75.75 0 0 1-.29 1.471 5.5 5.5 0 0 0-2.15 0 .75.75 0 1 1-.29-1.471A7 7 0 0 1 8 1"]; export const CircleDashedRingFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "circle-dashed-ring-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); CircleDashedRingFilledIcon.displayName = "Blueprint6.Icon.Next.CircleDashedRingFilledIcon"; export default CircleDashedRingFilledIcon; //# sourceMappingURL=circle-dashed-ring-filled.js.map