@atlaskit/button
Version:
A button triggers an event or action. They let users know what will happen next.
7 lines • 498 B
JavaScript
import { __assign, __rest } from "tslib";
import { jsx } from '@emotion/core';
export default (function (_a) {
var fit = _a.fit, children = _a.children, rest = __rest(_a, ["fit", "children"]);
return (jsx("span", __assign({ css: __assign(__assign({ alignSelf: 'center', display: 'inline-flex', flexWrap: 'nowrap', maxWidth: '100%', position: 'relative' }, (fit && { width: '100%' })), (fit && { justifyContent: 'center' })) }, rest), children));
});
//# sourceMappingURL=InnerWrapper.js.map