@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.93 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 = ["M10.25 3A5 5 0 1 1 8 12.464a5 5 0 1 1 0-8.929A5 5 0 0 1 10.25 3m-4.5 1.5a3.5 3.5 0 1 0 .834 6.898 5 5 0 0 1-1.127-1.97l-.018-.066a5 5 0 0 1-.178-1.676l.007-.104q.01-.12.026-.24l.01-.085q.024-.156.056-.308l.012-.049q.03-.135.068-.27l.017-.059q.093-.312.225-.605l.028-.06q.203-.44.482-.828l.019-.026q.173-.237.373-.451A3.5 3.5 0 0 0 5.75 4.5m4.5 0q-.433.001-.835.1.18.195.342.409l.039.053.01.016q.281.39.484.828l.027.06q.132.293.225.605l.017.06q.038.134.068.27l.012.048q.032.152.055.308l.011.085q.016.12.026.24l.007.104q.011.156.012.314 0 .158-.012.313-.001.042-.005.083-.026.33-.092.645l-.014.058q-.03.132-.067.263l-.018.066a5 5 0 0 1-1.127 1.97q.403.1.835.102a3.5 3.5 0 1 0 0-7M8 5.322A3.5 3.5 0 0 0 6.75 8c0 .34.049.67.14.981.196.67.588 1.256 1.11 1.695A3.5 3.5 0 0 0 9.25 8 3.5 3.5 0 0 0 8 5.322"];
export const ResolveIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "resolve", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
ResolveIcon.displayName = "Blueprint6.Icon.Next.ResolveIcon";
export default ResolveIcon;
//# sourceMappingURL=resolve.js.map