UNPKG

rsuite

Version:

A suite of react components

16 lines (10 loc) 364 B
import * as React from 'react'; import { StandardProps } from '../@types/common'; export interface HelpBlockProps extends StandardProps { /** Primary content */ children?: React.ReactNode; /** Whether to show through the Tooltip component */ tooltip?: boolean; } declare const HelpBlock: React.ComponentType<HelpBlockProps>; export default HelpBlock;