UNPKG

@wix/design-system

Version:

@wix/design-system

13 lines 332 B
import React from 'react'; export const Action = ({ children }) => { return React.cloneElement(children, { style: { ...children.props.style, position: 'relative', zIndex: 1, }, }); }; Action.displayName = 'Action'; export default Action; //# sourceMappingURL=Action.js.map