Module Align

type verticalAlign = [
  1. | `top
  2. | `center
  3. | `bottom
]
type horizontalAlign = [
  1. | `left
  2. | `center
  3. | `right
]
val makeProps : ?h:horizontalAlign -> ?v:verticalAlign -> children:'children -> ?key:string -> unit -> < h : horizontalAlign option ; v : verticalAlign option ; children : 'children > Js.t
val make : < children : React.element ; h : horizontalAlign option ; v : verticalAlign option > Js.t -> React.element