UNPKG
jc-biz-components
Version:
latest (1.0.3)
1.0.3
1.0.1
1.0.0
jc component library based on Antd
jc-biz-components
/
components
/
upload-btn
/
index.js
11 lines
(8 loc)
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
import
{
Icon
}
from
'antd'
const
UpLoadBtn
= (
{
type
=
'picture'
}
) => (
<
div
>
<
Icon
type
=
{type}
style
=
{{
fontSize:
36
,
color:
'#
E8E8E8
' }} />
</
div
>
)
export
default
UpLoadBtn