@ntragas/pouncejstest
Version:
A collection of UI components from Panther labs
13 lines (12 loc) • 385 B
JavaScript
import React from 'react';
import { __DEV__ } from '../../utils/helpers';
export var AbstractButton = /*#__PURE__*/React.forwardRef(function AbstractButton(_ref, ref) {
var children = _ref.children;
return /*#__PURE__*/React.createElement("button", {
ref: ref
}, children);
});
export default AbstractButton;
if (__DEV__) {
AbstractButton.displayName = 'AbstractButton';
}