@yandex/ui
Version:
Yandex UI components
11 lines (10 loc) • 548 B
JavaScript
import { compose, composeU } from '@bem-react/core';
import { RadioButton as RadioButtonTouchPad, } from '../RadioButton@touch-pad';
// _size
import { withSizeS } from '../_size/RadioButton_size_s';
import { withSizeM } from '../_size/RadioButton_size_m';
import { withSizeL } from '../_size/RadioButton_size_l';
// _view
import { withViewDefault } from '../_view/RadioButton_view_default';
export * from '../RadioButton@touch-pad';
export var RadioButton = compose(composeU(withSizeS, withSizeM, withSizeL), withViewDefault)(RadioButtonTouchPad);