@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
32 lines • 2.76 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LayoutSkewGrid = void 0;
const tslib_1 = require("tslib");
const jsx_runtime_1 = require("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.
*/
const React = tslib_1.__importStar(require("react"));
const iconTypes_1 = require("../../iconTypes");
const svgIconContainer_1 = require("../../svgIconContainer");
exports.LayoutSkewGrid = React.forwardRef((props, ref) => {
const isLarge = (props.size ?? iconTypes_1.IconSize.STANDARD) >= iconTypes_1.IconSize.LARGE;
const pixelGridSize = isLarge ? iconTypes_1.IconSize.LARGE : iconTypes_1.IconSize.STANDARD;
const translation = `${-1 * pixelGridSize / 0.05 / 2}`;
const style = { transformOrigin: "center" };
return ((0, jsx_runtime_1.jsx)(svgIconContainer_1.SVGIconContainer, { iconName: "layout-skew-grid", ref: ref, ...props, children: (0, jsx_runtime_1.jsx)("path", { d: isLarge ? "M40 80A40 40 0 1 0 40 0A40 40 0 0 0 40 80M360 80A40 40 0 1 0 360 0A40 40 0 0 0 360 80M200 160A40 40 0 1 0 200 80A40 40 0 0 0 200 160M40 240A40 40 0 1 0 40 160A40 40 0 0 0 40 240M360 240A40 40 0 1 0 360 160A40 40 0 0 0 360 240M200 320A40 40 0 1 0 200 240A40 40 0 0 0 200 320M40 400A40 40 0 1 0 40 320A40 40 0 0 0 40 400M360 400A40 40 0 1 0 360 320A40 40 0 0 0 360 400" : "M40 200C18 200 0 182 0 160S18 120 40 120S80 138 80 160S62 200 40 200M280 240C302 240 320 258 320 280S302 320 280 320S240 302 240 280S258 240 280 240M40 80C18 80 0 62 0 40S18 0 40 0S80 18 80 40S62 80 40 80M40 320C18 320 0 302 0 280S18 240 40 240S80 258 80 280S62 320 40 320M160 140C138 140 120 122 120 100S138 60 160 60S200 78 200 100S182 140 160 140M280 200C258 200 240 182 240 160S258 120 280 120S320 138 320 160S302 200 280 200M160 260C138 260 120 242 120 220S138 180 160 180S200 198 200 220S182 260 160 260M280 80C258 80 240 62 240 40S258 0 280 0S320 18 320 40S302 80 280 80", fillRule: "evenodd", transform: `scale(0.05, -0.05) translate(${translation}, ${translation})`, style: style }) }));
});
exports.LayoutSkewGrid.displayName = `Blueprint6.Icon.LayoutSkewGrid`;
exports.default = exports.LayoutSkewGrid;
//# sourceMappingURL=layout-skew-grid.js.map