@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.22 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 = ["M5.922 1.27c2.277.535 3.593 1.553 4.312 2.754.494.825.667 1.682.73 2.4a5.6 5.6 0 0 0 1.551-.583 7 7 0 0 0 .94-.615l.047-.038.01-.008a.75.75 0 0 1 1.218.741c-.536 2.277-1.552 3.592-2.752 4.31-.825.494-1.684.668-2.403.732a5.6 5.6 0 0 0 .583 1.552 7 7 0 0 0 .615.94l.038.047.008.01a.75.75 0 0 1-.741 1.218c-2.277-.536-3.592-1.552-4.31-2.752-.493-.825-.668-1.683-.731-2.402a5.6 5.6 0 0 0-1.553.582 7 7 0 0 0-.94.615l-.046.038-.01.008a.75.75 0 0 1-1.219-.741c.536-2.278 1.554-3.593 2.755-4.31.825-.494 1.682-.667 2.4-.73a5.6 5.6 0 0 0-.583-1.554 7 7 0 0 0-.615-.94l-.038-.046-.008-.01a.75.75 0 0 1 .742-1.219m1.561 2.166C7.766 4.093 8 4.892 8 5.75a.75.75 0 0 1-.744.75c-.763.007-1.653.072-2.462.555-.468.28-.949.725-1.36 1.461C4.092 8.233 4.891 8 5.75 8a.75.75 0 0 1 .75.743c.007.767.072 1.657.555 2.465.28.466.725.947 1.46 1.357C8.233 11.908 8 11.108 8 10.25a.75.75 0 0 1 .743-.75c.768-.008 1.657-.073 2.465-.556.466-.28.946-.724 1.356-1.46-.657.283-1.456.516-2.314.516a.75.75 0 0 1-.75-.746c-.004-.76-.07-1.65-.553-2.46-.28-.467-.727-.947-1.464-1.358M8 7.053a1 1 0 1 1 0 2 1 1 0 0 1 0-2"];
export const ShurikenIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "shuriken", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
ShurikenIcon.displayName = "Blueprint6.Icon.Next.ShurikenIcon";
export default ShurikenIcon;
//# sourceMappingURL=shuriken.js.map