UNPKG

1.37 kBJavaScriptView Raw
1/*
2 * Copyright 2023 Palantir Technologies, Inc. All rights reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16import { __assign } from "tslib";
17import classNames from "classnames";
18import * as React from "react";
19import { Classes } from "../../common";
20import { DISPLAYNAME_PREFIX } from "../../common/props";
21import { ControlCard } from "./controlCard";
22/**
23 * Radio Card component.
24 *
25 * @see https://blueprintjs.com/docs/#core/components/control-card.radio-card
26 */
27export var RadioCard = React.forwardRef(function (props, ref) {
28 var className = classNames(props.className, Classes.RADIO_CONTROL_CARD);
29 return React.createElement(ControlCard, __assign({}, props, { className: className, controlKind: "radio", ref: ref }));
30});
31RadioCard.displayName = "".concat(DISPLAYNAME_PREFIX, ".RadioCard");
32//# sourceMappingURL=radioCard.js.map
\No newline at end of file