@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.78 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 = ["M8 1.25q.638.001 1.243.115a1.74 1.74 0 0 0-.128 1.504 5.25 5.25 0 1 0 4.015 4.016 1.74 1.74 0 0 0 1.505-.126q.114.604.115 1.241A6.75 6.75 0 1 1 8 1.25m5.75.251.118.01a1 1 0 0 1 .112.029q.029.008.056.018l.006.002.121.064a1 1 0 0 1 .125.105l.066.082a1 1 0 0 1 .054.086q.02.033.034.067.01.027.018.056c.024.073.04.15.04.231v3a.75.75 0 0 1-.152.448.75.75 0 0 1-.598.302l-.077-.004A.75.75 0 0 1 13 5.251v-1.19l-2.47 2.47-.057.052q-.041.031-.086.057a.75.75 0 0 1-.74.02.8.8 0 0 1-.228-.185.74.74 0 0 1-.113-.756.8.8 0 0 1 .164-.248L11.94 3h-1.19a.751.751 0 0 1-.451-1.35l.003.001a.74.74 0 0 1 .448-.151z"];
export const CircleArrowOutIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "circle-arrow-out", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
CircleArrowOutIcon.displayName = "Blueprint6.Icon.Next.CircleArrowOutIcon";
export default CircleArrowOutIcon;
//# sourceMappingURL=circle-arrow-out.js.map