puppy-lib-components
Version:
A modern TypeScript React component library with generic UI components and football pickem domain components
25 lines (24 loc) • 584 B
TypeScript
import React from 'react';
export interface ContainerProps {
/**
* The content of the container
*/
children: React.ReactNode;
/**
* The maximum width of the container
*/
maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
/**
* Whether the container should be centered
*/
centered?: boolean;
/**
* The padding of the container
*/
padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
/**
* Additional CSS class name
*/
className?: string;
}
export declare const Container: React.FC<ContainerProps>;