24 lines
614 B
TypeScript
24 lines
614 B
TypeScript
import { Text, View } from '@tarojs/components'
|
|
import { memo } from 'react'
|
|
import IconFont from '../iconfont/iconfont'
|
|
import style from './index.module.scss'
|
|
|
|
interface Params {
|
|
onClose?: () => void
|
|
styleObj?: Object
|
|
}
|
|
const CloseBtn = ({ onClose, styleObj = {} }: Params) => {
|
|
return (
|
|
<View
|
|
style={styleObj}
|
|
className={style.icon_a_cuowuwrong_self}
|
|
onClick={onClose}
|
|
>
|
|
<View className={style.icon_a_btn}>
|
|
<IconFont name="icon-qingchuxinxi" size={40} color="#acacac"></IconFont>
|
|
</View>
|
|
</View>
|
|
)
|
|
}
|
|
export default memo(CloseBtn)
|