@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
30 lines • 2.28 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/*
* Copyright 2024 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 { IconSize } from "../../iconTypes";
import { SVGIconContainer } from "../../svgIconContainer";
/** Path data for the 16px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_16 = ["m7.71 3.71-2 2a1.003 1.003 0 0 1-1.42-1.42l.3-.29H3c-.55 0-1 .45-1 1s.45 1 1 1a1 1 0 1 1 0 2C1.34 8 0 6.66 0 5s1.34-3 3-3h1.59l-.3-.29A1.003 1.003 0 0 1 5.71.29l2 2c.18.18.29.43.29.71s-.11.53-.29.71m1.875 8.863-2.98 2.98a1.526 1.526 0 0 1-2.158-2.158l2.98-2.98a4.502 4.502 0 0 1 6.013-5.977l-3 3.001a1.5 1.5 0 0 0 2.12 2.122l3.002-3.001a4.502 4.502 0 0 1-5.977 6.013"];
/** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_20 = ["M4 9C2.34 9 1 7.66 1 6s1.34-3 3-3h1.59l-.3-.29a1.003 1.003 0 0 1 1.42-1.42l2 2c.18.18.29.43.29.71s-.11.53-.29.71l-2 2a1.003 1.003 0 0 1-1.42-1.42l.3-.29H4c-.55 0-1 .45-1 1s.45 1 1 1a1 1 0 1 1 0 2m9.5 7c-.821 0-1.6-.18-2.3-.503l-2.944 2.944a1.907 1.907 0 0 1-2.697-2.697L8.503 12.8a5.5 5.5 0 0 1 7.68-7.103l-3.744 3.742a1.5 1.5 0 1 0 2.122 2.122l3.742-3.743A5.5 5.5 0 0 1 13.5 16"];
export const WrenchRedo = React.forwardRef((props, ref) => {
const isLarge = (props.size ?? IconSize.STANDARD) >= IconSize.LARGE;
const paths = isLarge ? PATHS_20 : PATHS_16;
return (_jsx(SVGIconContainer, { iconName: "wrench-redo", ref: ref, ...props, children: paths.map((d, i) => (_jsx("path", { d: d, fillRule: "evenodd" }, i))) }));
});
WrenchRedo.displayName = `Blueprint6.Icon.WrenchRedo`;
export default WrenchRedo;
//# sourceMappingURL=wrench-redo.js.map