/** @jsxRuntime classic */ /** @jsx jsx */ import { jsx } from '../emotion' import { forwardRefWithAs } from '../utils' import { Box, type BoxProps } from './Box' type CenterProps = { fillView?: boolean } & BoxProps export const Center = forwardRefWithAs<'div', CenterProps>( ({ fillView = false, ...props }, ref) => { return ( ) } )