@ducor/react
Version:
admin template ui interface
11 lines (10 loc) • 349 B
TypeScript
import React from "react";
interface FlexProps extends React.HTMLProps<HTMLDivElement> {
direction?: "row" | "col";
wrap?: "wrap" | "nowrap";
align?: "start" | "center" | "end" | "stretch";
justify?: "start" | "center" | "end" | "between" | "around";
gap?: number;
}
declare const Flex: React.FC<FlexProps>;
export default Flex;