@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.29 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 = ["M7.137 1.343a.75.75 0 0 1 .76.02l2 1.25a.75.75 0 0 1-.215 1.364l-1.432.357v1.168a18 18 0 0 1 3 .273V2.75a.75.75 0 0 1 1.148-.636l2 1.25a.75.75 0 0 1-.216 1.364l-1.432.357v1.097c.27.103.516.22.725.354.336.217.775.61.775 1.214v5.418c0 .53-.369.877-.63 1.062-.29.204-.665.365-1.067.495-.814.262-1.91.447-3.13.524a.75.75 0 0 1-.798-.748v-1.25h-1.25v1.25a.75.75 0 0 1-.795.749c-1.238-.074-2.337-.258-3.148-.52-.401-.13-.775-.293-1.063-.5-.265-.191-.619-.54-.619-1.062V7.749c0-.446.24-.776.5-1.006V2.75a.75.75 0 0 1 1.147-.636l2 1.25a.75.75 0 0 1-.215 1.364l-1.432.357v.93l.164-.05c.782-.212 1.76-.361 2.836-.427V2a.75.75 0 0 1 .387-.656m5.613 7.973q-.313.121-.663.217C11.01 9.827 9.566 10 8 10s-3.01-.172-4.086-.466a7 7 0 0 1-.664-.217v3.57q.007.008.015.014c.104.083.303.192.62.305.47.167 1.107.309 1.865.406V12.5a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 .75.75v1.112c.758-.097 1.395-.24 1.864-.406.318-.113.517-.222.621-.305l.015-.013zM8 7c-1.472 0-2.777.164-3.691.413-.402.11-.695.23-.888.337.193.108.486.227.888.337.914.25 2.22.413 3.691.413 1.472 0 2.777-.164 3.691-.413.401-.11.694-.23.887-.337a3.5 3.5 0 0 0-.601-.252.74.74 0 0 1-.351-.101C10.716 7.157 9.437 7 8 7"];
export const StadiumIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "stadium", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
StadiumIcon.displayName = "Blueprint6.Icon.Next.StadiumIcon";
export default StadiumIcon;
//# sourceMappingURL=stadium.js.map