UNPKG

@wix/design-system

Version:

@wix/design-system

17 lines 421 B
import React from 'react'; import PropTypes from 'prop-types'; export const Action = ({ children }) => { return React.cloneElement(children, { style: { ...children.props.style, position: 'relative', zIndex: 1, }, }); }; Action.displayName = 'Action'; Action.propTypes = { children: PropTypes.any, }; export default Action; //# sourceMappingURL=Action.js.map