Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-flexify

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-flexify

react flex flexbox

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source
react flexbox component
npm install react-flexify --save
import Flex from 'react-flexify';
<Flex row> // flex container
    <Flex grow='1' shrink='2' basis='400px'>hi</Flex> // flex-item,
    <Flex flex='1 2 400px' tag='span'>hi</Flex> // flex-item, <span>hi</span>

    <div> hi </div> // normal html element

    <Flex column alignItems='stretch' tag='section' className='bla' data-custom='hi'>
        <aside>...</aside>
        ....
    </Flex> // flex-container, section.bla.fcol.f-ai-s(data-custom='hi') > aside

</Flex>
Usage:
  <Flex inline // display: inline-flex
        row // flex-direction, default
        column // flex-direction: column
        justifyContent='flex-start|...',
        alignItems='center'
        alignContent='center',
        alignSelf='auto',
        order='1',
        wrap='wrap'
        tag='article' // wrapper html element tag, default: 'div'
        grow='1'
        shrink='1',
        basis='1',
        flex='1 2 400px'
        data-custom-data // custom attrs
        >
  </Flex>
  • All props are optional. if none of inline|row|column is present, then just render this.props.children wrapped with tag(default is div)

  • inline => flex display level, set this to change to inline-flex. (default is flex)

  • row|column => A flex container, with flex-direction: row|column; and other default rules display: flex; justify-content: space-around; align-items: center; align-content: center; flex-wrap: wrap

  • ... set other props to override its default value.

  • can also pass other props(data-), will be set on wrapper element

Keywords

FAQs

Package last updated on 11 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc