UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.6 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 = ["M9.996 1c.744 0 1.425.364 1.905.845.327.326.595.747.737 1.216.974.184 1.758.782 2.136 1.597.373.804.31 1.733-.234 2.535.555.67.767 1.54.68 2.372a3.74 3.74 0 0 1-1.554 2.643c-.183.74-.541 1.327-1.036 1.747-.56.476-1.24.693-1.902.732-.957.056-1.987-.258-2.727-.846-.706.579-1.67.904-2.555.845-.62-.042-1.254-.275-1.731-.798-.37-.405-.596-.934-.68-1.562-1.442-.548-2.052-2.021-1.99-3.3.03-.604.207-1.216.546-1.737-1.083-1.534-.18-3.802 1.76-4.22.14-.473.411-.896.74-1.224C4.57 1.365 5.252 1 5.996 1c.833 0 1.498.257 1.996.65C8.493 1.25 9.16 1 9.996 1m0 1.5c-.63 0-1.011.22-1.25.498v9.493c.385.415 1.137.743 1.894.699.4-.024.752-.151 1.02-.378q.064-.057.127-.127a3.5 3.5 0 0 1-1.023-.218q-.032-.011-.052-.02l-.017-.008-.007-.004h-.003l-.001-.001a.75.75 0 0 1 .624-1.365l.005.003.077.027c.072.023.184.054.32.074.263.039.601.036.955-.099a2.24 2.24 0 0 0 1.063-1.664c.067-.647-.171-1.217-.648-1.534A.75.75 0 0 1 13 6.689c.566-.499.588-1.022.413-1.4-.13-.282-.402-.549-.797-.688-.19.621-.58 1.18-1.112 1.537a.75.75 0 0 1-.836-1.245c.33-.221.578-.674.577-1.142V3.75c0-.256-.136-.575-.405-.845-.27-.27-.588-.405-.844-.405m-4 0c-.256 0-.575.136-.845.405-.27.27-.405.589-.405.845a.75.75 0 0 1-.75.75c-1.121 0-1.574 1.046-1.253 1.77.367-.173.788-.27 1.253-.27a.75.75 0 0 1 0 1.5c-.474 0-.805.182-1.034.45-.243.282-.397.692-.419 1.149-.045.937.444 1.75 1.337 1.913a.75.75 0 0 1 .616.738c0 .615.165.948.328 1.128.164.18.404.29.722.312.614.04 1.314-.267 1.7-.697V3.001c-.239-.274-.626-.501-1.25-.501"]; export const BrainIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "brain", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); BrainIcon.displayName = "Blueprint6.Icon.Next.BrainIcon"; export default BrainIcon; //# sourceMappingURL=brain.js.map