@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
30 lines • 2.62 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";
/** Path data for the 16px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_16 = ["M12.5 0a.5.5 0 0 1 .5.5V9a1 1 0 0 1 1 1v2h.5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H13v1a1 1 0 0 1-2 0v-1H5v1a1 1 0 0 1-2 0v-1H1.5a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5H2v-2a1 1 0 0 1 1-1V.5a.5.5 0 0 1 1 0V3a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2V.5a.5.5 0 0 1 .5-.5M9 8H7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1m3.5 3h-1a.5.5 0 1 0 0 1h1a.5.5 0 1 0 0-1m-8 0h-1a.5.5 0 1 0 0 1h1a.5.5 0 1 0 0-1M9 9a.5.5 0 0 1 .5.5v1l-.008.09A.5.5 0 0 1 9 11H7l-.09-.008a.5.5 0 0 1-.41-.492v-1l.008-.09A.5.5 0 0 1 7 9Zm2-5H5v2h6z"];
/** Path data for the 20px grid; matches {@link generate-icon-paths.mjs} / `<Icon />` from core. */
const PATHS_20 = ["M16 0a1 1 0 0 1 1 1v11a1 1 0 0 1 1 1v3h.5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H17v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1H6v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-1H1.5a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5H2v-3a1 1 0 0 1 1-1V1a1 1 0 1 1 2 0v3a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2V1a1 1 0 0 1 1-1m-4 10H8a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1m-7 4H4a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2m11 0h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2m-4.5 0a.5.5 0 1 1 0 1h-3l-.09-.008A.5.5 0 0 1 8.5 14Zm0-1.5a.5.5 0 1 1 0 1h-3l-.09-.008a.5.5 0 0 1 .09-.992Zm0-1.5a.5.5 0 1 1 0 1h-3l-.09-.008A.5.5 0 0 1 8.5 11ZM14 5H6v3h8z"];
export const Truck = React.forwardRef((props, ref) => {
const isLarge = (props.size ?? IconSize.STANDARD) >= IconSize.LARGE;
const paths = isLarge ? PATHS_20 : PATHS_16;
return (_jsx(SVGIconContainer, { iconName: "truck", ref: ref, ...props, children: paths.map((d, i) => (_jsx("path", { d: d, fillRule: "evenodd" }, i))) }));
});
Truck.displayName = `Blueprint6.Icon.Truck`;
export default Truck;
//# sourceMappingURL=truck.js.map