@shopify/polaris
Version:
Shopify’s admin product component library
16 lines (13 loc) • 347 B
JavaScript
import React from 'react';
import { UnstyledButton } from './UnstyledButton.js';
function unstyledButtonFrom({
content,
onAction,
...action
}, overrides, key) {
return /*#__PURE__*/React.createElement(UnstyledButton, Object.assign({
key: key,
onClick: onAction
}, action, overrides), content);
}
export { unstyledButtonFrom };