@yandex/ui
Version:
Yandex UI components
21 lines (20 loc) • 824 B
TypeScript
import './Text_weight_bold.css';
import React from 'react';
export interface ITextWeightBoldProps {
/**
* Насыщенность текста
*/
weight?: 'bold';
}
/**
* Модификатор, отвечающий за насыщенность текста.
* @param {ITextWeightBoldProps} props
*/
export declare const withWeightBold: {
<K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: React.ComponentType<ITextWeightBoldProps & K>): (props: ITextWeightBoldProps & 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;
};