UNPKG

@blueprintjs/icons

Version:

Components, fonts, icons, and css files for creating and displaying icons.

30 lines 1.94 kB
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"; /** Path data for the 16px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */ const PATHS_16 = ["M0 10h5V7H0zm1-2h3v1H1zm14-5h-4v3h5V4c0-.55-.45-1-1-1m0 2h-3V4h3zM0 4v2h5V3H1c-.55 0-1 .45-1 1m0 9c0 .55.45 1 1 1h4v-3H0zm6-7h4V3H6zm0 8h4v-3H6zm1-2h2v1H7zm4 2h4c.55 0 1-.45 1-1v-2h-5zm0-4h5V7h-5zm-5 0h4V7H6z"]; /** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */ const PATHS_20 = ["M14 12h6V8h-6zM0 12h6V8H0zm1-3h4v2H1zm-1 7c0 .55.45 1 1 1h5v-4H0zM19 3h-5v4h6V4c0-.55-.45-1-1-1m0 3h-4V4h4zM0 4v3h6V3H1c-.55 0-1 .45-1 1m7 3h6V3H7zm7 10h5c.55 0 1-.45 1-1v-3h-6zm-7 0h6v-4H7zm1-3h4v2H8zm-1-2h6V8H7z"]; export const HeatGrid = React.forwardRef((props, ref) => { const isLarge = (props.size ?? IconSize.STANDARD) >= IconSize.LARGE; const paths = isLarge ? PATHS_20 : PATHS_16; return (_jsx(SVGIconContainer, { iconName: "heat-grid", ref: ref, ...props, children: paths.map((d, i) => (_jsx("path", { d: d, fillRule: "evenodd" }, i))) })); }); HeatGrid.displayName = `Blueprint6.Icon.HeatGrid`; export default HeatGrid; //# sourceMappingURL=heat-grid.js.map