/*
 * 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 = ["M7.2 1.428A4 4 0 0 0 5 5v2H4a1 1 0 0 0 0 2h1v1.5c0 1.133-.229 1.79-.457 2.133-.21.315-.413.367-.543.367H3v2h10v-2H6.591c.27-.684.409-1.522.409-2.5V9h3a1 1 0 1 0 0-2H7V5a2 2 0 0 1 3.732-1l1.732-1a4 4 0 0 0-4.666-1.815"] as readonly string[];

/** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_20 = ["M9.62 5.174A3 3 0 0 0 9 7v2h4a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H9v1.377c0 .987-.187 1.867-.534 2.623H17v3H3v-3h.5c.715 0 1.334-.217 1.754-.59.388-.344.746-.944.746-2.033V12H4a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h2V7a6 6 0 0 1 8.296-5.543C15.516 1.962 16.34 2.857 17 4l-2.402 1.5a3 3 0 0 0-4.978-.326"] as readonly string[];

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