Properties

Align: Record<
    | "BASELINE"
    | "CENTER"
    | "END"
    | "START"
    | "STRETCH", string>
Child: FC<PropsWithChildren<FlexChildProps>> & {
    defaultProps: FlexChildProps;
}
Direction: Record<"HORIZONTAL" | "HORIZONTAL_REVERSE" | "VERTICAL", string>
Justify: Record<
    | "CENTER"
    | "END"
    | "START"
    | "AROUND"
    | "BETWEEN", string>
Wrap: Record<"WRAP" | "NO_WRAP" | "WRAP_REVERSE", string>