@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.62 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 1a7 7 0 0 1 1.397.14 1.75 1.75 0 0 0 .407 2.581l-1.04 1.043a1.75 1.75 0 1 0 2.474 2.474l1.041-1.042a1.747 1.747 0 0 0 2.58.408A7 7 0 1 1 8 1m5.751.501c.08 0 .157.016.23.039q.028.008.055.018l.006.002.121.064a1 1 0 0 1 .106.086l.021.02q.072.078.118.167.02.033.034.067.01.027.018.056a.8.8 0 0 1 .041.231v3a.75.75 0 0 1-1.5 0v-1.19l-2.47 2.47a.75.75 0 0 1-1.06-1.06L11.94 3h-1.19a.75.75 0 0 1 0-1.5z"];
export const CircleArrowOutFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "circle-arrow-out-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
CircleArrowOutFilledIcon.displayName = "Blueprint6.Icon.Next.CircleArrowOutFilledIcon";
export default CircleArrowOutFilledIcon;
//# sourceMappingURL=circle-arrow-out-filled.js.map