@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.83 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 = ["M8.9 10.15H7.1V8.848h1.8zM12.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-.75m-8.5 9.401a.6.6 0 1 0 0 1.2h.5a.6.6 0 0 0 0-1.2zm8 0a.6.6 0 1 0 0 1.2h.5a.6.6 0 0 0 0-1.2zM6.5 7.65a.6.6 0 0 0-.6.599v2.5a.6.6 0 0 0 .6.6h3a.6.6 0 0 0 .6-.6v-2.5a.6.6 0 0 0-.6-.6zm-.75-3.401a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h4.5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z"];
export const TruckFrontFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "truck-front-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
TruckFrontFilledIcon.displayName = "Blueprint6.Icon.Next.TruckFrontFilledIcon";
export default TruckFrontFilledIcon;
//# sourceMappingURL=truck-front-filled.js.map