UNPKG

react-layout-kit

Version:
7 lines (6 loc) 366 B
/// <reference types="react" /> import { FlexBasicProps } from "../FlexBasic"; import { CommonProps } from "../type"; export type CenterProps = Omit<FlexBasicProps, 'distribution' | 'direction' | 'align'>; declare const Center: import("react").ForwardRefExoticComponent<CenterProps & CommonProps & import("react").RefAttributes<HTMLElement>>; export default Center;