@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.49 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 = ["M4.25 4.249A3.75 3.75 0 0 1 8 7.999c0 .584-.249 1.293-.532 1.939a22 22 0 0 1-1.07 2.06 41 41 0 0 1-1.495 2.374l-.026.04-.007.009-.002.003a.75.75 0 0 1-1.179.073l-.056-.072-.001-.001-.002-.003-.007-.01-.026-.039a31 31 0 0 1-.445-.669 41 41 0 0 1-1.05-1.706 22 22 0 0 1-1.07-2.06C.75 9.293.5 8.584.5 8a3.75 3.75 0 0 1 3.75-3.75m0 2.75a1 1 0 1 0 0 2 1 1 0 0 0 0-2m5.429 1.228c.589.267 1.336.607 1.928 1.083.614.492 1.143 1.197 1.143 2.189 0 .933-.6 1.542-1.24 1.904-.631.357-1.422.555-2.14.671-.733.118-1.456.16-1.991.175-.269.007-.493.007-.651.005l-.187-.003-.05-.002h-.015l-.004-.001h-.003a.7.7 0 0 1-.247-.057c.25-.385.565-.888.891-1.44l.227-.001a14 14 0 0 0 1.79-.156c.657-.106 1.241-.27 1.641-.496.39-.221.479-.42.479-.599 0-.384-.182-.7-.581-1.02-.42-.337-.99-.605-1.611-.887l-.328-.15c.153-.465.27-.966.27-1.444l-.003-.093q.298.148.682.322m1.511-2.955c.227.492.445.914.498 1.017a.75.75 0 0 1-.658.459l-.073.005c-.053.004-.133.01-.231.02a8 8 0 0 0-.76.118 4.2 4.2 0 0 0-1.028.338A4.7 4.7 0 0 0 8.46 5.8c.418-.187.85-.302 1.197-.375a9 9 0 0 1 1.197-.167l.082-.005.023-.002h.088a1 1 0 0 1 .143.023m2.06-4.025c.99 0 1.75.823 1.75 1.784 0 .28-.1.6-.185.837-.095.268-.22.562-.341.831-.245.54-.5 1.033-.551 1.13a.76.76 0 0 1-1.346 0 24 24 0 0 1-.55-1.13 11 11 0 0 1-.342-.83c-.085-.238-.185-.559-.185-.838 0-.96.76-1.784 1.75-1.784"];
export const RouteFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "route-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
RouteFilledIcon.displayName = "Blueprint6.Icon.Next.RouteFilledIcon";
export default RouteFilledIcon;
//# sourceMappingURL=route-filled.js.map