@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.88 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 = ["M12.666 13a.75.75 0 0 1 0 1.5H3.333a.75.75 0 0 1 0-1.5zM8.145 1.265q.143.02.277.076l.129.064.12.082q.114.091.2.206l.078.122.007.013v.001l1.915 3.634 2.763-2.365.014-.013c.178-.145.398-.229.626-.241l.171.004q.17.018.328.088l.15.082.136.103q.127.115.213.264l.073.154.048.164c.034.167.03.34-.015.506l-.001.004-1.89 6.83a1.42 1.42 0 0 1-1.354 1.04H3.868a1.42 1.42 0 0 1-1.32-.93l-.035-.11-1.889-6.83V4.21a1.1 1.1 0 0 1 .032-.67l.074-.154a1.085 1.085 0 0 1 1.481-.398l.14.098.015.012 2.762 2.366 1.916-3.636.007-.013a1.1 1.1 0 0 1 .398-.41l.13-.064c.132-.056.276-.086.421-.086zM6.403 6.264 6.4 6.27a1.418 1.418 0 0 1-2.147.417l-.01-.008-1.808-1.55 1.507 5.453h8.118l1.506-5.453-1.806 1.549-.01.008a1.42 1.42 0 0 1-1.173.3 1.42 1.42 0 0 1-.975-.716l-.004-.008L8 3.232z"];
export const CrownIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "crown", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
CrownIcon.displayName = "Blueprint6.Icon.Next.CrownIcon";
export default CrownIcon;
//# sourceMappingURL=crown.js.map