/*
 * 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 = ["M3 0h7l4 4v3.533A4 4 0 0 0 12 7V5H9V2H4v12h3v1.405q0 .306.07.595H3c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1m11 12h.48c.275 0 .52.175.52.45v2.955c0 .27-.245.595-.52.595h-5c-.275 0-.48-.325-.48-.595V12.45c0-.275.205-.45.48-.45H10v-1.025C10 9.885 10.895 9 12 9s2 .885 2 1.975zm-3-1.015V12h2v-1.015A.993.993 0 0 0 12 10c-.55 0-1 .44-1 .985"] as readonly string[];

/** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_20 = ["M3 0h8l6 6v3.555A4 4 0 0 0 15 9V7h-5V2H4v16h5v1.5q0 .247.052.5H3c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1m13.965 15.005h1.465c.275 0 .535.22.535.495v4c0 .275-.26.505-.535.505h-6.965c-.275 0-.465-.23-.465-.505v-4c0-.275.19-.495.465-.495h1.5V13a2 2 0 1 1 4 0zm-3-2v2.005h2v-2.005c0-.55-.45-1-1-1s-1 .45-1 1"] as readonly string[];

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