@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 = ["M8 .5c.199 0 .39.08.53.22.327.326.95.783 1.723 1.257a1.75 1.75 0 0 0-1.138 1.055q-.188-.12-.365-.241v10.585c1.738-1.199 2.805-2.372 3.463-3.61a8 8 0 0 0 .755-2.113l.032.002a1.75 1.75 0 0 0 1.667-1.22c-.136 1.44-.461 2.774-1.13 4.034-.96 1.808-2.58 3.382-5.151 4.925a.75.75 0 0 1-.772 0c-2.571-1.543-4.191-3.117-5.151-4.925C1.505 8.663 1.25 6.709 1.25 4.5a.75.75 0 0 1 .568-.728c.909-.227 2.094-.754 3.193-1.365C6.118 1.792 7.045 1.145 7.47.72l.114-.094A.75.75 0 0 1 8 .5m-.75 2.291c-.46.312-.977.63-1.51.927-.955.53-2.023 1.028-2.982 1.34.042 1.845.309 3.35 1.03 4.708.657 1.238 1.724 2.411 3.462 3.61zM13 .654a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5a.75.75 0 0 1 .75-.75"];
export const ShieldPlusIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "shield-plus", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
ShieldPlusIcon.displayName = "Blueprint6.Icon.Next.ShieldPlusIcon";
export default ShieldPlusIcon;
//# sourceMappingURL=shield-plus.js.map