@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.73 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.015-.013c.177-.145.397-.229.626-.241l.17.004q.17.018.328.088l.15.082.136.103q.127.115.213.264l.073.154.048.164c.035.167.03.34-.015.506v.004l-1.89 6.83a1.42 1.42 0 0 1-1.355 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-.013c.093-.17.232-.311.398-.41l.13-.064c.132-.056.276-.086.421-.086z"];
export const CrownFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "crown-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
CrownFilledIcon.displayName = "Blueprint6.Icon.Next.CrownFilledIcon";
export default CrownFilledIcon;
//# sourceMappingURL=crown-filled.js.map