Module Text

type size =
  1. | XSmall
  2. | Small
  3. | Medium
  4. | Large
  5. | XLarge
  6. | XXLarge
  7. | XXXLarge
type weight =
  1. | Thin
  2. | Light
  3. | Regular
  4. | Medium
  5. | Semibold
  6. | Bold
  7. | Extrabold
  8. | Black
type align =
  1. | Left
  2. | Center
  3. | Right
  4. | Justify
val makeProps : color:'color -> ?size:size -> ?weight:weight -> ?align:'align -> children:'children -> ?key:string -> unit -> < color : 'color ; size : size option ; weight : weight option ; align : 'align option ; children : 'children > Js.t
val make : < align : align option ; children : string ; color : string ; size : size option ; weight : weight option > Js.t -> React.element