/*
 * 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 = ["M14.635 7.672a.61.61 0 0 1-.03.828l-3.462 3.46a.609.609 0 0 0 .861.862l3.461-3.461c.677-.677.716-1.76.091-2.485l-2.652-3.072h1.105a.609.609 0 1 0 0-1.217h-2.435a.61.61 0 0 0-.609.609V5.63a.609.609 0 0 0 1.218 0v-.798zm-4.342-.379a1 1 0 0 1 0 1.414L6.05 12.95a1 1 0 0 1-1.414 0L.393 8.707a1 1 0 0 1 0-1.414L4.636 3.05a1 1 0 0 1 1.414 0z"] as readonly string[];

/** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_20 = ["M18.293 9.59a.76.76 0 0 1-.038 1.035l-4.326 4.326a.76.76 0 1 0 1.076 1.076l4.326-4.326c.846-.846.896-2.2.114-3.106l-3.315-3.84h1.38a.76.76 0 1 0 0-1.521h-3.043a.76.76 0 0 0-.76.76v3.044a.76.76 0 0 0 1.521 0V6.04zm-5.427-.474a1.25 1.25 0 0 1 0 1.768l-5.303 5.303a1.25 1.25 0 0 1-1.768 0L.492 10.884a1.25 1.25 0 0 1 0-1.768l5.303-5.303a1.25 1.25 0 0 1 1.768 0z"] as readonly string[];

export const RotateCcw: 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="rotate-ccw" ref={ref} {...props}>
            {paths.map((d, i) => (
                <path key={i} d={d} fillRule="evenodd" />
            ))}
        </SVGIconContainer>
    );
});
RotateCcw.displayName = `Blueprint6.Icon.RotateCcw`;
export default RotateCcw;
