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