UNPKG

semantic-styled-ui

Version:

Set of UI components based of Semantic UI with Styled Components

28 lines (25 loc) 580 B
import * as React from "react" import { BoxAlignProp, SpacingProp } from "../types" export interface FlexboxProps { /** * position / justification of all content */ justify?: BoxAlignProp /** * position / justification of all content */ align?: BoxAlignProp /** * direction of flex */ column?: boolean /** * should use a wrapper instead of applying flex styles directly to children */ wrap?: boolean /** * primary content rendered inside the Flexbox */ children?: React.ReactNode } declare const Flexbox: React.FC<FlexboxProps>