react-layout-kit
Version:
a npm develop template
7 lines (6 loc) • 305 B
TypeScript
/// <reference types="react" />
import { IFlexbox } from "../Flexbox";
import { DivProps } from "../type";
export declare type CenterProps = Omit<IFlexbox, 'distribution' | 'direction' | 'align'>;
declare const Center: ({ children, ...res }: CenterProps & DivProps) => JSX.Element;
export default Center;