UNPKG
rc-banner-anim-fix
Version:
latest (2.4.4)
2.4.4
2.4.3
banner-anim animation component for react
github.com/dxtiger/banner-anim
dxtiger/banner-anim
rc-banner-anim-fix
/
typings
/
Arrow.d.ts
12 lines
(9 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
*
as
React
from
'react'
;
export
interface
IProps
<T>
extends
React
.
HTMLAttributes
<T> {
prefixCls
?:
string
;
arrowType
:
'prev'
|
'next'
;
component
?:
string
|
React
.
ReactNode
;
componentProps
?: {}; }
export
default
class
Arrow
<T>
extends
React
.
Component
<
IProps
<T>> { }