UNPKG

@theme-ui/components

Version:

Primitive layout, typographic, and other components for use with Theme UI.

10 lines (9 loc) 344 B
import { BoxOwnProps, BoxProps } from './Box'; import { ForwardRef } from './types'; export declare type FlexOwnProps = BoxOwnProps; export declare type FlexProps = BoxProps; /** * Use the Flex component to create flexbox layouts. * @see https://theme-ui.com/components/flex */ export declare const Flex: ForwardRef<HTMLElement, FlexProps>;