/*
 * 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 = ["M12.5 0a.5.5 0 0 1 .5.5V9a1 1 0 0 1 1 1v2h.5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H13v1a1 1 0 0 1-2 0v-1H5v1a1 1 0 0 1-2 0v-1H1.5a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5H2v-2a1 1 0 0 1 1-1V.5a.5.5 0 0 1 1 0V3a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2V.5a.5.5 0 0 1 .5-.5M9 8H7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1m3.5 3h-1a.5.5 0 1 0 0 1h1a.5.5 0 1 0 0-1m-8 0h-1a.5.5 0 1 0 0 1h1a.5.5 0 1 0 0-1M9 9a.5.5 0 0 1 .5.5v1l-.008.09A.5.5 0 0 1 9 11H7l-.09-.008a.5.5 0 0 1-.41-.492v-1l.008-.09A.5.5 0 0 1 7 9Zm2-5H5v2h6z"] as readonly string[];

/** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_20 = ["M16 0a1 1 0 0 1 1 1v11a1 1 0 0 1 1 1v3h.5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H17v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1H6v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-1H1.5a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5H2v-3a1 1 0 0 1 1-1V1a1 1 0 1 1 2 0v3a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2V1a1 1 0 0 1 1-1m-4 10H8a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1m-7 4H4a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2m11 0h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2m-4.5 0a.5.5 0 1 1 0 1h-3l-.09-.008A.5.5 0 0 1 8.5 14Zm0-1.5a.5.5 0 1 1 0 1h-3l-.09-.008a.5.5 0 0 1 .09-.992Zm0-1.5a.5.5 0 1 1 0 1h-3l-.09-.008A.5.5 0 0 1 8.5 11ZM14 5H6v3h8z"] as readonly string[];

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