reverie-ui
Version:
A React UI library based on Tailwind CSS
16 lines (15 loc) • 511 B
TypeScript
import { FC } from "react";
import { CommonProps } from "../../types";
export declare type FlexProps = CommonProps<HTMLDivElement> & {
inline?: boolean;
column?: boolean;
justify?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly';
align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
noGrow?: boolean;
noShrink?: boolean;
basis?: string;
fullWidth?: boolean;
fullHeight?: boolean;
};
declare const Flex: FC<FlexProps>;
export default Flex;