/*
 * 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 type { SVGIconProps } from "../../svgIconProps";
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 = ["M0 3.5C0 1.57 1.57 0 3.5 0S7 1.57 7 3.5 5.43 7 3.5 7 0 5.43 0 3.5m3-2v2.21l1.56 1.56c.1.09.23.14.36.14.12 0 .25-.05.35-.14.19-.2.19-.51 0-.71L4 3.29V1.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5m6.585 11.073-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"] as readonly string[];

/** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_20 = ["M1 4.5C1 2.57 2.57 1 4.5 1S8 2.57 8 4.5 6.43 8 4.5 8 1 6.43 1 4.5m3-2v2.21l1.56 1.56c.1.09.23.14.36.14.12 0 .25-.05.35-.14.19-.2.19-.51 0-.71L5 4.29V2.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5M13.5 16c-.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"] as readonly string[];

export const WrenchTime: React.FC<SVGIconProps> = React.forwardRef<any, SVGIconProps>((props, ref) => {
    const isLarge = (props.size ?? IconSize.STANDARD) >= IconSize.LARGE;
    const paths = isLarge ? PATHS_20 : PATHS_16;
    return (
        <SVGIconContainer iconName="wrench-time" ref={ref} {...props}>
            {paths.map((d, i) => (
                <path key={i} d={d} fillRule="evenodd" />
            ))}
        </SVGIconContainer>
    );
});
WrenchTime.displayName = `Blueprint6.Icon.WrenchTime`;
export default WrenchTime;
