import React, { forwardRef } from "react" import { classNames } from "../../utils" import { VerticalAligned, VerticalAlignedProps, } from "../VerticalAligned/VerticalAligned" export type CenterAlignedProps = VerticalAlignedProps /** * Aligns its children vertically and horizontally. */ export const CenterAligned = forwardRef( function CenterAligned({ className, ...rest }, ref) { return ( ) }, )