UNPKG

@yandex/ui

Version:

Yandex UI components

22 lines (21 loc) 1.08 kB
/// <reference types="react" /> import './Textinput_pin_brick-round.css'; export interface ITextinputPinBrickRoundProps { /** * Форма текстового поля. */ pin?: 'brick-round'; } /** * Модификатор, отвечающий за форму текстового поля. * Используется для группировки текстового поля с другими блоками, например, с кнопками. * @param {ITextinputPinBrickRoundProps} props */ export declare const withPinBrickRound: { <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: import("react").ComponentType<ITextinputPinBrickRoundProps & K>): (props: ITextinputPinBrickRoundProps & K) => import("react").ReactElement<any, string | ((props: any) => import("react").ReactElement<any, any> | null) | (new (props: any) => import("react").Component<any, any, any>)>; __isSimple: boolean; __blockName: string; __mod: string; __value: string | number | boolean | undefined; __passToProps: boolean; };