@yandex/ui
Version:
Yandex UI components
9 lines (8 loc) • 454 B
JavaScript
import { __assign, __rest } from "tslib";
import React from 'react';
import { cnRadioButton } from '../RadioButton';
import './RadioButton-Plate.css';
export var RadioButtonPlate = function (_a) {
var className = _a.className, innerRef = _a.innerRef, props = __rest(_a, ["className", "innerRef"]);
return (React.createElement("div", __assign({}, props, { hidden: true, className: cnRadioButton('Plate', null, [className]), ref: innerRef })));
};