UNPKG

280 BTypeScriptView Raw
1import * as React from 'react';
2
3export interface IProps<T> extends React.HTMLAttributes<T> {
4 children: React.ReactNode;
5 prefixCls?: string;
6 component?: string | React.ReactNode;
7 componentProps?: {};
8}
9
10export default class Thumb<T> extends React.Component<IProps<T>> {
11
12}
\No newline at end of file