@yandex/ui
Version:
Yandex UI components
21 lines (20 loc) • 873 B
TypeScript
/// <reference types="react" />
import './Button_view_action.css';
export interface IButtonViewActionProps {
/**
* Внешний вид кнопки
*/
view?: 'action';
}
/**
* Модификатор, отвечающий за внешний вид кнопки.
* @param {IButtonViewActionProps} props
*/
export declare const withViewAction: {
<K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: import("react").ComponentType<IButtonViewActionProps & K>): (props: IButtonViewActionProps & 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;
};