UNPKG

react-layout-kit

Version:
7 lines (6 loc) 305 B
/// <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;