/*
 * 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 = ["M1 8h3.76l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1m14.49-4.01c.31-.32.51-.76.51-1.24C16 1.78 15.22 1 14.25 1c-.48 0-.92.2-1.24.51l-1.44 1.44 2.47 2.47zM1 4h7.76l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1m0 6c-.55 0-1 .45-1 1 0 .48.35.86.8.96L2.76 10zm9.95-6.43-6.69 6.69 2.47 2.47 6.69-6.69zm4.25 2.47L13.24 8H15c.55 0 1-.45 1-1 0-.48-.35-.86-.8-.96M2 15l3.86-1.39-2.46-2.44zm13-5h-3.76l-2 2H15c.55 0 1-.45 1-1s-.45-1-1-1"] as readonly string[];

/** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_20 = ["M1 12h4.34l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1m16.77-3.94 1.65-1.65c.36-.36.58-.86.58-1.41 0-1.1-.9-2-2-2-.55 0-1.05.22-1.41.59l-1.65 1.65zM1 4h12.34l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1M0 15c0 .55.45 1 1 1h.34l2-2H1c-.55 0-1 .45-1 1m1-7h8.34l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1m18 2h-.34l-2 2H19c.55 0 1-.45 1-1s-.45-1-1-1m0 4h-4.34l-2 2H19c.55 0 1-.45 1-1s-.45-1-1-1M4 19l4.41-1.59-2.81-2.79zM14.23 5.94l-7.65 7.65 2.83 2.83 7.65-7.65z"] as readonly string[];

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