UNPKG

@gizwits/vantui

Version:

机智云组件库

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 };