import clsx from 'clsx'; import { CProps } from '../props'; interface OverlayProps extends CProps.Styling { /** Id of the overlay. */ id?: string; /** Classnames for position of the overlay. */ position?: string; /** Classname for z-index of the overlay. */ layer?: string; } /** * Displays a transparent overlay over the main content. */ export function Overlay({ children, className, position = 'top-0 right-0', layer = 'z-pop', ...restProps }: React.PropsWithChildren) { return (
{children}
); }