UNPKG

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