@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
28 lines • 2.15 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/*
* 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 { IconSize } from "../../iconTypes";
import { SVGIconContainer } from "../../svgIconContainer";
export const Nest = React.forwardRef((props, ref) => {
const isLarge = (props.size ?? IconSize.STANDARD) >= IconSize.LARGE;
const pixelGridSize = isLarge ? IconSize.LARGE : IconSize.STANDARD;
const translation = `${-1 * pixelGridSize / 0.05 / 2}`;
const style = { transformOrigin: "center" };
return (_jsx(SVGIconContainer, { iconName: "nest", ref: ref, ...props, children: _jsx("path", { d: isLarge ? "M40 360C51 360 60 351 60 340V240C60 195.8 95.8 160 140 160H311.8L266 205.8A19.4 19.4 0 0 0 260 220A20.06 20.06 0 0 0 294.2000000000001 234.2L374.2000000000001 154.2C377.8 150.6 380 145.6 380 140S377.8 129.4 374.2000000000001 125.8L294.2000000000001 45.8A20.06 20.06 0 0 0 265.8 74.2000000000001L311.8 120H140C73.8 120 20 173.8 20 240V340C20 351 29 360 40 360" : "M40 280C51 280 60 271 60 260V200C60 166.8 86.8 140 120 140H231.8L206 165.8A19.4 19.4 0 0 0 200 180A20.06 20.06 0 0 0 234.2 194.2L294.2000000000001 134.2C297.8 130.6 300 125.6 300 120S297.8 109.4 294.2000000000001 105.8L234.2 45.8A20.06 20.06 0 0 0 205.8 74.2L231.8000000000001 100H120C64.8 100 20 144.8 20 200V260C20 271 29 280 40 280", fillRule: "evenodd", transform: `scale(0.05, -0.05) translate(${translation}, ${translation})`, style: style }) }));
});
Nest.displayName = `Blueprint6.Icon.Nest`;
export default Nest;
//# sourceMappingURL=nest.js.map