@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.66 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.538 0 1.052.082a1.75 1.75 0 0 0 .44 1.633 5.25 5.25 0 1 0 3.542 3.542l.112.1a1.75 1.75 0 0 0 1.521.341q.082.515.083 1.052A6.75 6.75 0 1 1 8 1.25M14.25 1a.749.749 0 0 1 .53 1.28L13.56 3.5l1.22 1.22a.75.75 0 0 1 0 1.06.74.74 0 0 1-.34.193.75.75 0 0 1-.72-.193L12.5 4.56l-.296.295-.924.925-.056.052q-.041.031-.084.056a.75.75 0 0 1-.742.02.8.8 0 0 1-.178-.128.75.75 0 0 1 0-1.06l1.22-1.22-1.22-1.22a.75.75 0 0 1-.186-.746A.74.74 0 0 1 10.75 1a.75.75 0 0 1 .53.22l1.22 1.22 1.22-1.22a.75.75 0 0 1 .53-.22"];
export const CircleXAltIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "circle-x-alt", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
CircleXAltIcon.displayName = "Blueprint6.Icon.Next.CircleXAltIcon";
export default CircleXAltIcon;
//# sourceMappingURL=circle-x-alt.js.map