Sha256: dce9f892718fae8bda2b404fc09375b45c0c9ce1f12f6819d331447d8b9006ca

Contents?: true

Size: 962 Bytes

Versions: 2

Compression:

Stored size: 962 Bytes

Contents

import React from 'react';
import { GlobalProps } from '../utilities/globalProps';
import { Sizes } from '../types';
declare type FlexProps = {
    children: React.ReactChild[] | React.ReactNode;
    className?: string;
    data?: object;
    horizontal?: "left" | "center" | "right" | "stretch" | "none";
    justify?: "start" | "center" | "end" | "around" | "between" | "evenly" | "none";
    id?: string;
    inline?: boolean;
    orientation?: "row" | "column";
    spacing?: "around" | "between" | "evenly" | "none";
    reverse?: boolean;
    vertical?: "top" | "center" | "bottom" | "stretch" | "baseline" | "none";
    align?: "start" | "center" | "end" | "stretch" | "baseline" | "none";
    gap?: Sizes | "none";
    rowGap?: Sizes | "none";
    columnGap?: Sizes | "none";
    wrap?: boolean;
    alignSelf?: "start" | "end" | "center" | "stretch" | "none";
} & GlobalProps;
declare const Flex: (props: FlexProps) => JSX.Element;
export default Flex;

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
playbook_ui-13.12.0.pre.alpha.PLAY1081exporttypes1609 app/pb_kits/playbook/pb_flex/_flex.d.ts
playbook_ui-13.12.0.pre.alpha.PLAY1081exporttypes1608 app/pb_kits/playbook/pb_flex/_flex.d.ts