UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.07 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 = ["M4.531 1.759a1.25 1.25 0 0 1 1.291.74l.001-.002 1.32 2.95.005.011a1.25 1.25 0 0 1-.102 1.177 1 1 0 0 1-.054.072L5.801 8.122c.443.808 1.278 1.635 2.093 2.076l1.394-1.186a1.25 1.25 0 0 1 .65-.257l.156-.005q.155.005.304.05l.147.052.01.004 2.935 1.315c.217.093.404.246.537.439l.055.086.047.088c.1.212.14.45.112.684l-.002.012a3.77 3.77 0 0 1-3.739 3.27 9.25 9.25 0 0 1-9.238-8.792L1.25 5.5a3.77 3.77 0 0 1 3.27-3.74zm3.58 3.39a.75.75 0 0 1 .942-.49 3.51 3.51 0 0 1 2.287 2.289.75.75 0 1 1-1.43.45A2.01 2.01 0 0 0 8.6 6.09a.75.75 0 0 1-.489-.941m.663-2.34a.75.75 0 0 1 .917-.534 5.66 5.66 0 0 1 4.035 4.034.75.75 0 0 1-1.452.382A4.17 4.17 0 0 0 9.31 3.725a.75.75 0 0 1-.535-.916M2.75 5.5a7.75 7.75 0 0 0 7.751 7.75 2.27 2.27 0 0 0 2.218-1.781l-2.622-1.176-1.4 1.193a1.25 1.25 0 0 1-1.298.144l-.004-.003c-1.211-.584-2.428-1.786-3.02-2.997l-.003-.005A1.25 1.25 0 0 1 4.51 7.33l1.196-1.423L4.53 3.28a2.27 2.27 0 0 0-1.78 2.218z"]; export const PhoneWavesIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "phone-waves", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); PhoneWavesIcon.displayName = "Blueprint6.Icon.Next.PhoneWavesIcon"; export default PhoneWavesIcon; //# sourceMappingURL=phone-waves.js.map