@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2 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 = ["M14.694 9.396a.75.75 0 0 1 .138 1.078l-3.25 4a.75.75 0 0 1-.582.277H5a.75.75 0 0 1-.582-.277l-3.25-4a.75.75 0 0 1 .138-1.078L4.1 7.342c.218.453.463.91.706 1.34l-1.978 1.456 2.53 3.113h5.285l2.528-3.113-1.978-1.455c.244-.431.489-.888.707-1.341zM8 .75a3.75 3.75 0 0 1 3.75 3.75c0 .585-.249 1.293-.532 1.938a22 22 0 0 1-1.07 2.06 41 41 0 0 1-1.495 2.375l-.026.04-.007.009-.002.003a.75.75 0 0 1-1.179.073l-.056-.072-.001-.001-.002-.003-.007-.01-.026-.039-.098-.144a41 41 0 0 1-1.397-2.23 22 22 0 0 1-1.07-2.06C4.5 5.792 4.25 5.084 4.25 4.5A3.75 3.75 0 0 1 8 .75m0 1.5A2.25 2.25 0 0 0 5.75 4.5c0 .244.126.7.405 1.335.266.604.625 1.275.993 1.91.3.516.602.997.852 1.389.25-.392.553-.873.852-1.389a20 20 0 0 0 .993-1.91c.279-.635.405-1.091.405-1.335A2.25 2.25 0 0 0 8 2.25m0 1.405a1 1 0 1 1 0 2 1 1 0 0 1 0-2"];
export const LocationPinPolygonIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "location-pin-polygon", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
LocationPinPolygonIcon.displayName = "Blueprint6.Icon.Next.LocationPinPolygonIcon";
export default LocationPinPolygonIcon;
//# sourceMappingURL=location-pin-polygon.js.map