UNPKG

jc-biz-components

Version:

jc component library based on Antd

11 lines (8 loc) 214 B
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