@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.97 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 = ["M12.25.749a.75.75 0 0 1 .75.75v6.76c.564.074 1 .556 1 1.14v2.1a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-.75.75h-1.25v.75a1 1 0 1 1-2 0v-.75h-5.5v.75a1 1 0 1 1-2 0v-.75H2a.75.75 0 0 1-.75-.75v-.5a.75.75 0 0 1 .75-.75v-2.1a1.15 1.15 0 0 1 1-1.14V1.5a.75.75 0 0 1 1.5 0v.506A1.75 1.75 0 0 1 5.73 1.5h4.54c.463 0 .904.184 1.23.506V1.5a.75.75 0 0 1 .75-.75M5.73 3a.25.25 0 0 0-.195.094l-.7.875a.75.75 0 0 1-.335.238V9a.75.75 0 0 1-.75.75H3.5V12h9V9.75h-.25A.75.75 0 0 1 11.5 9V4.206a.75.75 0 0 1-.336-.238l-.7-.875a.25.25 0 0 0-.194-.094zM5 10.15a.6.6 0 1 1 0 1.2h-.5a.6.6 0 0 1 0-1.2zm6.5 0a.6.6 0 1 1 0 1.2H11a.6.6 0 0 1 0-1.2zm-2-2.5a.6.6 0 0 1 .6.599v2.5a.6.6 0 0 1-.6.6h-3a.6.6 0 0 1-.6-.6v-2.5a.6.6 0 0 1 .6-.6zm-2.4 2.5h1.8V8.848H7.1zM10 4.498a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5z"];
export const TruckFrontIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "truck-front", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
TruckFrontIcon.displayName = "Blueprint6.Icon.Next.TruckFrontIcon";
export default TruckFrontIcon;
//# sourceMappingURL=truck-front.js.map