flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
33
VISUALIZACION/node_modules/polished/lib/mixins/wordWrap.js.flow
generated
vendored
Executable file
33
VISUALIZACION/node_modules/polished/lib/mixins/wordWrap.js.flow
generated
vendored
Executable file
|
|
@ -0,0 +1,33 @@
|
|||
// @flow
|
||||
import type { Styles } from '../types/style'
|
||||
|
||||
/**
|
||||
* Provides an easy way to change the `wordWrap` property.
|
||||
*
|
||||
* @example
|
||||
* // Styles as object usage
|
||||
* const styles = {
|
||||
* ...wordWrap('break-word')
|
||||
* }
|
||||
*
|
||||
* // styled-components usage
|
||||
* const div = styled.div`
|
||||
* ${wordWrap('break-word')}
|
||||
* `
|
||||
*
|
||||
* // CSS as JS Output
|
||||
*
|
||||
* const styles = {
|
||||
* overflowWrap: 'break-word',
|
||||
* wordWrap: 'break-word',
|
||||
* wordBreak: 'break-all',
|
||||
* }
|
||||
*/
|
||||
export default function wordWrap(wrap?: string = 'break-word'): Styles {
|
||||
const wordBreak = wrap === 'break-word' ? 'break-all' : wrap
|
||||
return {
|
||||
overflowWrap: wrap,
|
||||
wordWrap: wrap,
|
||||
wordBreak,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue