@yorkjs/hive-ui 2.1.4 → 2.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yorkjs/hive-ui",
3
- "version": "2.1.4",
3
+ "version": "2.1.5",
4
4
  "description": "Hive UI - Taro React component library",
5
5
  "main": "src/index.ts",
6
6
  "module": "src/index.ts",
@@ -42,7 +42,7 @@ const Checkbox: React.FC<CheckboxProps> = (props) => {
42
42
  const getIconColor = () => {
43
43
  if (disabled) return 'var(--extraColor)'
44
44
  if (checked) return 'var(--primary)'
45
- return isDark ? '#ffffff' : 'var(--textPlaceholder)'
45
+ return 'var(--textPlaceholder)'
46
46
  }
47
47
 
48
48
  const iconName = checked ? 'check-circle-fill' : 'circle'