UNPKG

eventx-design-system

Version:
11 lines 367 B
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