@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.77 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 = ["M5.031 1.259a1.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.072L6.301 7.622c.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.004L13.99 9.67c.217.093.404.246.537.439l.055.086.047.088c.1.212.14.45.112.684l-.002.012A3.77 3.77 0 0 1 11 14.25a9.25 9.25 0 0 1-9.238-8.792L1.75 5a3.77 3.77 0 0 1 3.27-3.74zM3.25 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 5.01 6.83l1.196-1.423L5.03 2.78a2.27 2.27 0 0 0-1.78 2.218z"];
export const PhoneIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "phone", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
PhoneIcon.displayName = "Blueprint6.Icon.Next.PhoneIcon";
export default PhoneIcon;
//# sourceMappingURL=phone.js.map