import React, { PropsWithChildren } from 'react'; import { BaseProps } from '../../@types/base'; import { Box } from '../Box'; export type CenterProps = PropsWithChildren< Omit >; export function Center({ children, flex = 1, ...rest }: CenterProps) { return ( {children} ); }