@yandex/ui
Version:
Yandex UI components
21 lines (20 loc) • 840 B
TypeScript
import React from 'react';
import './ButtonGroup_gap_l.css';
export interface ButtonGroupGapLProps {
/**
* Вертикальное позиционирование кнопока
*/
gap?: 'l';
}
/**
* Модификатор, делающий из ссылки псевдоссылку.
* @param {ButtonGroupProps} props
*/
export declare const withGapL: {
<K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: React.ComponentType<ButtonGroupGapLProps & K>): (props: ButtonGroupGapLProps & K) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, any> | null) | (new (props: any) => React.Component<any, any, any>)>;
__isSimple: boolean;
__blockName: string;
__mod: string;
__value: string | number | boolean | undefined;
__passToProps: boolean;
};