UNPKG

react-layout-kit

Version:
7 lines (6 loc) 316 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").NamedExoticComponent<CenterProps & CommonProps>; export default Center;