@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.71 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 = ["M14.47 10.97a.75.75 0 1 1 1.06 1.06l-3.5 3.5a.75.75 0 0 1-1.06-1.06zM1.22 1.22a.75.75 0 0 1 .757-.185l10.25 3.25.083.033a.75.75 0 0 1 .402.445l1.5 4.5a.75.75 0 0 1-.182.767l-4 4a.75.75 0 0 1-.87.134l-.1-.038c-.11-.04-.276-.099-.485-.17a235 235 0 0 0-3.096-1.014l-.513-.165-.144-.046-.038-.012-.01-.003-.002-.001a.75.75 0 0 1-.487-.488l-3.25-10.25a.75.75 0 0 1 .185-.757m6.603 5.543A1 1 0 0 1 8 6.75l.128.006a1.25 1.25 0 1 1-1.371 1.372L6.75 8l.007-.128q.002-.024.007-.048l-3.37-3.37 2.204 6.95.341.11a285 285 0 0 1 3.119 1.022q.137.047.255.09l3.329-3.328-1.234-3.7-6.954-2.204z"];
export const PenNibIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "pen-nib", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
PenNibIcon.displayName = "Blueprint6.Icon.Next.PenNibIcon";
export default PenNibIcon;
//# sourceMappingURL=pen-nib.js.map