UNPKG

@antmjs/vantui

Version:

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

13 lines 419 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.disabled || data.parentDisabled) && data.value === data.name) { styles['border-color'] = data.checkedColor; styles['background-color'] = data.checkedColor; } return style(styles); } export { iconStyle };