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 make : ?key:string -> color:string -> ?size:size -> ?weight:weight -> ?align:align -> children:string -> unit -> React.element