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