@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.18 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 = ["M1.75 9.164c.116.097.228.174.321.232.44.272.995.472 1.568.623 1.165.305 2.707.48 4.361.48l.614-.008c1.42-.037 2.728-.205 3.748-.472.573-.15 1.128-.35 1.568-.623a3 3 0 0 0 .32-.23v3.833c0 .504-.31.862-.586 1.08-.285.224-.653.4-1.047.54-.795.282-1.867.48-3.06.572a.75.75 0 0 1-.807-.749V13.25h-1.5v1.193a.75.75 0 0 1-.808.749c-1.192-.093-2.264-.29-3.06-.573-.393-.14-.761-.315-1.046-.54-.275-.217-.586-.575-.586-1.079zm5.387-7.821a.75.75 0 0 1 .76.02l2 1.25a.75.75 0 0 1-.215 1.364l-1.432.357v1.668l.34.005a18 18 0 0 1 2.66.255V2.749a.75.75 0 0 1 1.148-.636l2 1.25a.75.75 0 0 1-.216 1.364l-1.432.357v1.563c.252.092.473.194.652.305.31.192.569.455.569.797s-.26.605-.569.797c-.319.198-.765.367-1.294.506-.928.243-2.157.403-3.517.44L8 9.498c-1.594 0-3.046-.169-4.107-.447-.529-.139-.975-.308-1.294-.506-.31-.192-.569-.455-.569-.797 0-.213.1-.395.25-.549a.8.8 0 0 1-.03-.2V2.75a.75.75 0 0 1 1.147-.637l2 1.25a.75.75 0 0 1-.215 1.364l-1.432.357v1.403l.143-.04c.775-.204 1.76-.35 2.857-.413V2a.75.75 0 0 1 .387-.656"];
export const StadiumFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "stadium-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
StadiumFilledIcon.displayName = "Blueprint6.Icon.Next.StadiumFilledIcon";
export default StadiumFilledIcon;
//# sourceMappingURL=stadium-filled.js.map