@yandex/ui
Version:
Yandex UI components
9 lines (8 loc) • 349 B
TypeScript
import { FC } from 'react';
import { IRadioButtonProps as IRadioButtonTouchPhoneProps } from '../RadioButton@touch-phone';
export * from '../RadioButton@touch-phone';
export interface IRadioButtonProps extends IRadioButtonTouchPhoneProps {
size?: 's' | 'm' | 'l';
view?: 'default';
}
export declare const RadioButton: FC<IRadioButtonProps>;