UNPKG

@blueprintjs/icons

Version:

Components, fonts, icons, and css files for creating and displaying icons.

24 lines 1.71 kB
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 1a7 7 0 1 1 0 14A7 7 0 0 1 8 1m1.705 9.766A3.23 3.23 0 0 1 8 11.25c-.626 0-1.21-.178-1.706-.484l-1.616 1.617A5.48 5.48 0 0 0 8 13.5a5.48 5.48 0 0 0 3.321-1.117zm-6.087-6.09A5.48 5.48 0 0 0 2.5 8c0 1.248.416 2.398 1.116 3.321l1.617-1.616A3.23 3.23 0 0 1 4.75 8c0-.626.177-1.211.483-1.707zm7.148 1.618a3.24 3.24 0 0 1 0 3.411l1.617 1.616A5.48 5.48 0 0 0 13.5 8c0-1.248-.416-2.4-1.117-3.322zM8 6.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5M8 2.5a5.48 5.48 0 0 0-3.321 1.116l1.615 1.617A3.24 3.24 0 0 1 8 4.75c.625 0 1.21.177 1.705.483l1.616-1.617A5.48 5.48 0 0 0 8 2.5"]; export const LifeRingIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "life-ring", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); LifeRingIcon.displayName = "Blueprint6.Icon.Next.LifeRingIcon"; export default LifeRingIcon; //# sourceMappingURL=life-ring.js.map