UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.53 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 = ["m2.75 9.429 1.252-1.012.106-.072a.75.75 0 0 1 .366-.095h5.776v-5h-7.5zm9-.929a1.25 1.25 0 0 1-1.25 1.25H5.75v1.5h5.776l.127.01a.75.75 0 0 1 .345.157l1.252 1.012V6.25h-1.5zm0-3.75h1.75c.29 0 .57.101.792.283l.092.083.083.092c.182.222.283.502.283.792v8a.75.75 0 0 1-1.222.583l-2.267-1.833H5.5a1.25 1.25 0 0 1-1.25-1.25v-1.355l-1.778 1.438A.75.75 0 0 1 1.25 11V3A1.25 1.25 0 0 1 2.5 1.75h8A1.25 1.25 0 0 1 11.75 3z"]; export const ChatsIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "chats", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); ChatsIcon.displayName = "Blueprint6.Icon.Next.ChatsIcon"; export default ChatsIcon; //# sourceMappingURL=chats.js.map