/*
 * 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 5c-.363-.017-4.16-.009-6.005-.003a1 1 0 0 0-.995 1V9a1 1 0 0 0 1 1h2v5.057c0 .53.413.946.943.946h.082a1 1 0 0 0 .996-1.004L5 10h2l3.228 3.924c.596.724 1.772.303 1.772-.636V1.762c0-.936-1.17-1.359-1.768-.64zm8 3c0 1.018-.616 2.046-1.457 2.67-.237.176-.543-.012-.543-.306V5.769c0-.296.31-.484.55-.312C14.384 6.055 15 6.991 15 8"] as readonly string[];

/** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_20 = ["M8 6H2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h2v5a1 1 0 1 0 2 0v-5h2l5.293 5.293c.63.63 1.707.184 1.707-.707V1.414c0-.89-1.077-1.337-1.707-.707zm8.537 7.752C18.068 12.946 19 11.538 19 10c0-1.527-.94-2.933-2.461-3.747-.25-.134-.539.058-.539.342v6.814c0 .283.286.475.537.343"] as readonly string[];

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