@seed-design/react 0.0.1-rc.1 → 0.0.1-rc.2

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/lib/index.mjs CHANGED
@@ -210,7 +210,6 @@ var Icon = forwardRef2(({ svg, ...otherProps }, ref) => {
210
210
  });
211
211
  function withIconRequired(Component, enabledPredicate) {
212
212
  const Node = forwardRef2((props, ref) => {
213
- console.log(props);
214
213
  const enabled = enabledPredicate(props);
215
214
  return /* @__PURE__ */ jsx2(IconRequired, { enabled, children: /* @__PURE__ */ jsx2(Component, { ref, ...props }) });
216
215
  });