UNPKG

@antmjs/vantui

Version:

一套适用于Taro3及React的vantui组件库

13 lines 404 B
import { style } from '../wxs/style'; import { addUnit } from '../wxs/add-unit'; function iconStyle(data) { var styles = { 'font-size': addUnit(data.iconSize) }; if (data.checkedColor && data.value && !data.disabled && !data.parentDisabled) { styles['border-color'] = data.checkedColor; styles['background-color'] = data.checkedColor; } return style(styles); } export { iconStyle };