UNPKG

@yandex/ui

Version:

Yandex UI components

21 lines (20 loc) 931 B
/// <reference types="react" /> import './Button_baseline.css'; export interface IButtonBaselineProps { /** * Выравнивание кнопки по базовой линии */ baseline?: boolean; } /** * Модификатор, отвечающий за выравнивание кнопки по базовой линии. * @param {IButtonBaselineProps} props */ export declare const withBaseline: { <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: import("react").ComponentType<IButtonBaselineProps & K>): (props: IButtonBaselineProps & 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; };