UNPKG

@yandex/ui

Version:

Yandex UI components

10 lines (9 loc) 368 B
import { ComponentType } from 'react'; import { IHolderProps } from '../Holder/Attach-Holder'; import { IControlProps } from '../Control/Attach-Control'; import { IButtonProps } from '../../Button/Button'; export interface IAttachRegistry { Holder: ComponentType<IHolderProps>; Control: ComponentType<IControlProps>; Button: ComponentType<IButtonProps>; }