@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.6 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/*
* Copyright 2026 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 { SvgIconContainerNext } from "../../svgIconContainerNext";
const PATHS = ["M4 .249a.75.75 0 0 1 0 1.5H1.75v12.5H4a.75.75 0 0 1 0 1.5H1a.75.75 0 0 1-.75-.75v-14A.75.75 0 0 1 1 .249zm11 0a.75.75 0 0 1 .75.75v14a.75.75 0 0 1-.75.75h-3a.75.75 0 0 1 0-1.5h2.25v-12.5H12a.75.75 0 0 1 0-1.5zM6.592 3.75a.75.75 0 0 1 0 1.5c-.236 0-.344.041-.383.062a.1.1 0 0 0-.057.062c-.068.14-.084.383-.084.876 0 .382.016 1.015-.234 1.53q-.056.114-.128.22.072.106.128.22c.25.515.234 1.148.234 1.53 0 .493.016.735.084.876a.12.12 0 0 0 .057.063c.039.02.147.061.383.061a.75.75 0 0 1 0 1.5c-.4 0-.77-.068-1.09-.24a1.6 1.6 0 0 1-.7-.73c-.25-.515-.234-1.148-.234-1.53 0-.493-.015-.735-.084-.876-.017-.036-.031-.049-.056-.062-.039-.02-.146-.062-.382-.062a.75.75 0 1 1 0-1.5c.236 0 .343-.041.382-.062.025-.013.039-.026.056-.062.069-.14.084-.383.084-.876 0-.382-.015-1.015.235-1.53.141-.292.367-.553.699-.73.32-.172.69-.24 1.09-.24m2.818 0c.399 0 .77.068 1.089.24.332.177.557.438.698.73.25.515.235 1.148.235 1.53 0 .493.015.735.084.876.017.036.03.049.056.062.039.02.146.062.383.062a.75.75 0 0 1 0 1.5c-.237 0-.344.041-.383.062-.025.013-.039.026-.056.062-.069.14-.084.383-.084.876 0 .382.015 1.015-.235 1.53a1.6 1.6 0 0 1-.698.73c-.32.172-.69.24-1.09.24a.75.75 0 0 1 0-1.5c.237 0 .344-.041.382-.062.026-.013.04-.026.057-.062.068-.14.084-.383.084-.876 0-.382-.016-1.015.234-1.53a2 2 0 0 1 .127-.22 2 2 0 0 1-.127-.22c-.25-.515-.234-1.148-.234-1.53 0-.493-.016-.735-.084-.876-.018-.036-.031-.049-.057-.062-.038-.021-.145-.062-.382-.062a.75.75 0 0 1 0-1.5"];
export const ArrayObjectIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "array-object", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
ArrayObjectIcon.displayName = "Blueprint6.Icon.Next.ArrayObjectIcon";
export default ArrayObjectIcon;
//# sourceMappingURL=array-object.js.map