@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.45 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.235.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.105v-.002c-.458 1.128-1.403 1.64-2.468 1.89-.606.147-1.218.293-1.744.549-.51.249-.857.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-.539h-.003c-1.076-.253-2.031-.772-2.485-1.92v-.002c-.52-1.184-.253-2.216.1-3.077.088-.215.184-.425.275-.624.092-.202.18-.391.26-.581.161-.38.277-.722.322-1.06v-.002c.07-.533-.138-.817-.628-1.508a.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-.18zm.327 1.438c-1.173.677-2.708.73-3.966.293l-.21.349c.369.532.736 1.187.612 2.121-.068.52-.24.997-.42 1.421-.09.212-.187.422-.276.617-.092.2-.176.386-.252.571-.281.686-.4 1.255-.16 1.888l.052.128.013.03c.22.56.67.882 1.51 1.08h.002c.572.131 1.344.307 2.033.644.376.184.748.427 1.063.752a3.8 3.8 0 0 1 1.063-.746c.686-.334 1.457-.511 2.021-.649h.006c.844-.198 1.294-.52 1.515-1.08l.012-.03c.304-.68.188-1.28-.113-2.014-.076-.185-.16-.373-.252-.573-.09-.196-.185-.406-.275-.619-.179-.425-.349-.901-.415-1.42-.124-.933.245-1.59.608-2.12l-.209-.35c-1.255.43-2.788.384-3.962-.293"];
export const ShieldBadgeIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "shield-badge", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
ShieldBadgeIcon.displayName = "Blueprint6.Icon.Next.ShieldBadgeIcon";
export default ShieldBadgeIcon;
//# sourceMappingURL=shield-badge.js.map