@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.9 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 = ["M7.674 1.39a.69.69 0 0 1 .754.064c.879.687 2.406.743 3.507.18a.693.693 0 0 1 .91.26l.746 1.25c.14.234.13.53-.026.753-.426.61-.642.901-.642 1.322l.014.19v.004c.043.338.157.681.317 1.06.08.19.168.38.26.582.09.198.186.41.274.624.354.867.63 1.91.094 3.104-.458 1.127-1.404 1.639-2.469 1.89-.605.146-1.217.292-1.743.548-.51.249-.858.563-1.015 1.01a.693.693 0 0 1-1.306 0c-.158-.447-.506-.767-1.018-1.017-.523-.256-1.139-.401-1.736-.539l-.003-.001c-1.076-.252-2.031-.77-2.485-1.92-.52-1.185-.253-2.217.1-3.078.088-.215.184-.426.275-.624.092-.202.18-.391.26-.581.161-.38.277-.722.322-1.06.07-.534-.138-.82-.628-1.51a.69.69 0 0 1-.03-.757l.75-1.25.08-.108a.69.69 0 0 1 .833-.151c1.096.567 2.626.507 3.507-.18z"];
export const ShieldBadgeFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "shield-badge-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
ShieldBadgeFilledIcon.displayName = "Blueprint6.Icon.Next.ShieldBadgeFilledIcon";
export default ShieldBadgeFilledIcon;
//# sourceMappingURL=shield-badge-filled.js.map