UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.14 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 = ["M10.361 1.152c.404 0 .857.208 1.222.573.319.319.519.706.563 1.068l.01.154c0 .653-.343 1.292-.824 1.615a.598.598 0 0 0 .667.995c.654-.44 1.115-1.167 1.282-1.96.708.145 1.212.574 1.44 1.066.27.58.202 1.347-.567 2.026a.6.6 0 0 0 .064.946c.698.464.992 1.201.907 1.962-.085.757-.555 1.555-1.438 2.085a2.6 2.6 0 0 1-1.318.144 2.7 2.7 0 0 1-.541-.138l-.022-.009-.002-.001a.599.599 0 0 0-.495 1.09h.004l.005.004.018.008.053.022q.068.026.181.065a4 4 0 0 0 1.388.178c-.266.47-.577.802-.898 1.028a2.4 2.4 0 0 1-1.636.432c-.61-.06-.987-.198-1.254-.369-.23-.147-.412-.342-.604-.61V1.943c.337-.442.89-.79 1.795-.79m-4.787-.001c.9 0 1.462.358 1.796.792v11.602c-.403.601-1.087.922-1.791.923-.988 0-1.961-.627-2.102-2.01a.6.6 0 0 0-.488-.528c-1.009-.184-1.606-.935-1.79-1.854-.19-.943.084-1.935.693-2.48.313-.278.734-.462 1.289-.462a.599.599 0 1 0 0-1.197 3.14 3.14 0 0 0-1.613.425c-.742-1.06-.063-2.818 1.613-2.819.33 0 .598-.267.598-.597 0-.404.208-.857.572-1.222.365-.365.82-.573 1.223-.573"]; export const BrainFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "brain-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); BrainFilledIcon.displayName = "Blueprint6.Icon.Next.BrainFilledIcon"; export default BrainFilledIcon; //# sourceMappingURL=brain-filled.js.map