@i-novus/ui-core
Version:
Базовые UI компоненты
10 lines (9 loc) • 355 B
TypeScript
import { CompoundComponent } from '../../core';
import { RadioButton } from './RadioButton';
import { RadioGroup } from './RadioGroup';
import { RadioProps } from './index.types';
export type { RadioProps } from './index.types';
export declare const Radio: CompoundComponent<RadioProps, {
Button: typeof RadioButton;
Group: typeof RadioGroup;
}>;