UNPKG
rc-banner-anim-strict-mode
Version:
latest (2.4.7)
2.4.7
2.4.6
2.4.5
2.4.4
banner-anim animation component for react
github.com/dlrandy/banner-anim
dlrandy/banner-anim
rc-banner-anim-strict-mode
/
typings
/
Arrow.d.ts
12 lines
(9 loc)
•
292 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>> { }