Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Col

The Col component is used to separate the elements vertically.

Props

Prop Type Description
span number Set the desired number of columns, maximum value: 12
children node The content to display within the columns
style object Pass styles to the component Expected value: {}

Examples

<Col span={ 3 }>
  <Button size="large">
    Click me!
  </Button>
</Col>