/*
 * 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 = ["M6 0h4a1 1 0 0 1 1 1v3h2V3h-.5a.5.5 0 0 1 0-1h2a.5.5 0 0 1 0 1H14v1a1 1 0 1 1 0 2v1h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1h.5V6h-2v9a1 1 0 1 1-2 0V6H7v9a1 1 0 1 1-2 0V6H3v1h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H2V6a1 1 0 0 1 0-2V3h-.5a.5.5 0 0 1 0-1h2a.5.5 0 0 1 0 1H3v1h2V1a1 1 0 0 1 1-1m1 2v2h2V2z"] as readonly string[];

/** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_20 = ["M7 0h6a1 1 0 0 1 1 1v3h2V2a1 1 0 1 1 0-2h3a1 1 0 1 1 0 2h-1v2h1a1 1 0 1 1 0 2h-1v2h1a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2V6h-2v13a1 1 0 0 1-1.927.376L10 14.54l-2.072 4.834A1 1 0 0 1 6 19V6H4v2a1 1 0 0 1 0 2H1a1 1 0 0 1 0-2h1V6H1a1 1 0 0 1 0-2h1V2H1a1 1 0 0 1 0-2h3a1 1 0 0 1 0 2v2h2V1a1 1 0 0 1 1-1m1 2v2h4V2zm4 12.128V9.872L11.088 12zM8.516 6 10 9.462 11.483 6zm.396 6L8 9.872v4.256z"] as readonly string[];

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