UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.81 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 = ["M14.5 1.25a.75.75 0 0 1 .75.75c0 .452-.078.896-.209 1.324-.426 1.39-1.447 2.7-2.475 3.76a23 23 0 0 1-2.447 2.162q.03.11.054.224a4 4 0 0 1-3.923 4.78H1.5a.75.75 0 0 1-.417-1.374l.022-.017q.04-.03.122-.103c.108-.099.259-.255.41-.47.3-.425.613-1.09.613-2.036a4 4 0 0 1 4.78-3.923q.113.023.225.053c.356-.46.806-1.016 1.327-1.585l.023-.025c.402-.438.843-.885 1.314-1.305 1.269-1.134 2.894-2.215 4.58-2.215M9.276 6.27c-.232.27-.446.53-.638.772a4 4 0 0 1 .819.818c.242-.191.502-.405.771-.637a5 5 0 0 0-.952-.952m4.326-3.372c-.862.268-1.784.88-2.684 1.685q-.319.287-.618.587.572.456 1.03 1.03l.16-.16c.972-1.002 1.788-2.1 2.111-3.142"]; export const PaintbrushFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "paintbrush-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); PaintbrushFilledIcon.displayName = "Blueprint6.Icon.Next.PaintbrushFilledIcon"; export default PaintbrushFilledIcon; //# sourceMappingURL=paintbrush-filled.js.map