UNPKG

@yandex/ui

Version:

Yandex UI components

23 lines (22 loc) 981 B
/// <reference types="react" /> import './Button_theme_link.css'; export interface IButtonThemeLinkProps { /** * Стилевое оформление кнопки */ theme?: 'link'; } /** * Модификатор, отвечающий за стилевое оформление кнопки. * @param {IButtonThemeLinkProps} props * * @deprecated Рекомендуется использовать withViewLink */ export declare const withThemeLink: { <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: import("react").ComponentType<IButtonThemeLinkProps & K>): (props: IButtonThemeLinkProps & 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; };