primer-react
Version:
Primer react components
58 lines (51 loc) • 1.36 kB
JavaScript
import React from 'react'
import PropTypes from 'prop-types'
import classnames from 'classnames'
import {mapWhitespaceProps} from './props'
const fontSizeMap = {
0: 6,
1: 5,
2: 4,
3: 3,
4: 2,
5: 1,
6: 0
}
const Text = props => {
const {tag: Tag = 'span', children, color, fontSize, fontWeight, lineHeight, mono, nowrap, ...rest} = props
const {className} = mapWhitespaceProps(rest)
const fontSizeClass =
fontSize in fontSizeMap
? `f${fontSizeMap[fontSize]}`
: typeof fontSize === 'number' || fontSize
? `f${fontSize}`
: null
return (
<Tag
className={classnames(
className,
color && `text-${color}`,
fontSizeClass,
fontWeight && `text-${fontWeight}`,
lineHeight && `lh-${lineHeight}`,
mono && 'text-mono',
nowrap && 'no-wrap'
)}
>
{children}
</Tag>
)
}
Text.propTypes = {
// TODO: constrain with PropTypes.oneOf()
color: PropTypes.string,
// TODO constrain with PropTypes.oneOf()
fontSize: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
fontWeight: PropTypes.oneOf(['normal', 'bold']),
lineHeight: PropTypes.oneOf(['normal', 'condensed', 'condensed-ultra']),
mono: PropTypes.bool,
nowrap: PropTypes.bool,
tag: PropTypes.string,
...mapWhitespaceProps.propTypes
}
export default Text