rsuite
Version:
A suite of react components
15 lines (14 loc) • 396 B
TypeScript
import React from 'react';
import { WithAsProps, RsRefForwardingComponent } from '../internals/types';
interface StatLabelProps extends WithAsProps {
/**
* The info tip of the label
*/
info?: React.ReactNode;
/**
* Uppercase the label
*/
uppercase?: boolean;
}
declare const StatLabel: RsRefForwardingComponent<'dt', StatLabelProps>;
export default StatLabel;