Text
type size =
| XSmall
| Small
| Medium
| Large
| XLarge
| XXLarge
| XXXLarge
type weight =
| Thin
| Light
| Regular
| Semibold
| Bold
| Extrabold
| Black
type align =
| Left
| Center
| Right
| Justify
val make : ?key:string -> color:string -> ?size:size -> ?weight:weight -> ?align:align -> children:string -> unit -> React.element