ywana-core8 0.0.748 → 0.0.750

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.
@@ -1578,7 +1578,10 @@ var DropDown = function DropDown(props) {
1578
1578
  onClick: function onClick() {
1579
1579
  return select(option.value);
1580
1580
  }
1581
- }, /*#__PURE__*/React.createElement(Text, null, option.label));
1581
+ }, option.icon ? /*#__PURE__*/React.createElement(Icon, {
1582
+ icon: option.icon,
1583
+ size: "small"
1584
+ }) : '', /*#__PURE__*/React.createElement(Text, null, option.label));
1582
1585
  });
1583
1586
  return /*#__PURE__*/React.createElement("menu", null, /*#__PURE__*/React.createElement("ul", null, lis));
1584
1587
  } else {