@uva-glass/component-library
Version:
React components UvA
10 lines (9 loc) • 385 B
TypeScript
import { PropsWithChildren } from 'react';
interface ContainerProps {
size?: 'small' | 'medium' | 'large' | 'large-full-height';
visible?: boolean;
centerContent?: boolean;
padded?: boolean;
}
export declare const Container: ({ children, size, centerContent, visible, padded, }: PropsWithChildren<ContainerProps>) => import("react/jsx-runtime").JSX.Element;
export {};