UNPKG

react-application-core

Version:

A react-based application core for the business applications.

16 lines (15 loc) 458 B
/// <reference types="react" /> import { IThumbProps } from '../../definition'; import { GenericComponent } from '../base/generic.component'; export declare class Thumb extends GenericComponent<IThumbProps> { /** * @stable [05.06.2020] * @returns {JSX.Element} */ render(): JSX.Element; /** * @stable [05.06.2020] * @returns {IChipProps} */ protected get componentsSettingsProps(): IThumbProps; }