// @flow
/**
* CSS to represent truncated text with an ellipsis.
*
* @example
* // Styles as object usage
* const styles = {
* ...ellipsis('250px')
* }
*
* // styled-components usage
* const div = styled.div`
* ${ellipsis('250px')}
* `
*
* // CSS as JS Output
*
* div: {
* 'display': 'inline-block',
* 'max-width': '250px',
* 'overflow': 'hidden',
* 'text-overflow': 'ellipsis',
* 'white-space': 'nowrap',
* 'word-wrap': 'normal'
* }
*/
function ellipsis(width: string = '100%') {
return {
'display': 'inline-block',
'max-width': width,
'overflow': 'hidden',
'text-overflow': 'ellipsis',
'white-space': 'nowrap',
'word-wrap': 'normal',
}
}
export default ellipsis
|