eventx-design-system
Version:
Design System do EventX
11 lines • 367 B
TypeScript
import React from 'react';
export interface ContainerProps {
maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
center?: boolean;
fluid?: boolean;
children: React.ReactNode;
className?: string;
}
export declare const Container: React.FC<ContainerProps>;
//# sourceMappingURL=Container.d.ts.map