2.1.3 • Published 7 years ago

react-inline-block v2.1.3

Weekly downloads
2,894
License
MIT
Repository
github
Last release
7 years ago

react-inline-block

InlineBlock element for React

A div with display set to inline-block

Install

$ npm i --save react-inline-block

Usage

<InlineBlock>
  hello
</InlineBlock>
// => <div style={{display: 'inline-block'}}> hello </div>

Notes

The inline-block display value is set on the style prop.

The following

<InlineBlock style={{display: 'block'}}> </InlineBlock>

will still render a div with display: inline-block.

Contributing

$ git clone git@github.com:zippyui/react-inline-block.git
$ cd react-inline-block
$ npm install
$ npm run dev

License

MIT