import React from 'react'; import { Box } from './Box'; interface CenterProps { children: React.ReactNode; fullWidth?: boolean; fullHeight?: boolean; } /** * Center - A semantic UI component for centering content. */ export function Center({ children, fullWidth, fullHeight }: CenterProps) { return ( {children} ); }