@sap-ux/ui-components
Version:
SAP UI Components Library
30 lines • 755 B
TypeScript
import React from 'react';
import type { ILabelProps } from '@fluentui/react';
export type UILabelProps = ILabelProps;
export declare const labelGlobalStyle: {
fontWeight: string;
fontSize: string;
color: string;
padding: string;
};
/**
* UILabel component
* based on https://developer.microsoft.com/en-us/fluentui#/controls/web/label
*
* @exports
* @class UILabel
* @extends {React.Component<ILabelProps, {}>}
*/
export declare class UILabel extends React.Component<UILabelProps> {
/**
* Initializes component properties.
*
* @param {UILabelProps} props
*/
constructor(props: UILabelProps);
/**
* @returns {JSX.Element}
*/
render(): JSX.Element;
}
//# sourceMappingURL=UILabel.d.ts.map