/*
* 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} / `` from core. */
const PATHS_16 = ["M14 14a1 1 0 0 1 0 2H2a1 1 0 0 1 0-2zM7.995 3.005c.55 0 1 .45 1 .999v5.584l1.29-1.288a1.002 1.002 0 0 1 1.42 1.419l-3 2.996a1.015 1.015 0 0 1-1.42 0l-3-2.997A1.002 1.002 0 0 1 5.705 8.3l1.29 1.29V4.013c0-.55.45-1.009 1-1.009M14 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2m-3 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2M8 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2M5 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2M2 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2"] as readonly string[];
/** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `` from core. */
const PATHS_20 = ["M18 18a1 1 0 0 1 0 2H2a1 1 0 0 1 0-2zM9.995 3.005c.55 0 1 .45 1 .999v9.584l1.29-1.288a1.002 1.002 0 0 1 1.42 1.419l-3 2.996a1.015 1.015 0 0 1-1.42 0l-3-2.997a1.002 1.002 0 0 1 1.42-1.419l1.29 1.29V4.013c0-.55.45-1.009 1-1.009M16 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2m-3 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2m-3 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2M7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2M4 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2"] as readonly string[];
export const BringData: React.FC = React.forwardRef((props, ref) => {
const isLarge = (props.size ?? IconSize.STANDARD) >= IconSize.LARGE;
const paths = isLarge ? PATHS_20 : PATHS_16;
return (
{paths.map((d, i) => (
))}
);
});
BringData.displayName = `Blueprint6.Icon.BringData`;
export default BringData;