UNPKG

@gatsby-mdx-suite/mdx-copy

Version:
14 lines (10 loc) 257 B
import React from 'react' import styled from '@emotion/styled' const StyledNoWrap = styled.span` white-space: nowrap; ` /** * Prevents text from wrapping into a new line. */ const NoWrap = (props) => <StyledNoWrap {...props} /> export default NoWrap