UNPKG

ds-smart-ui

Version:

Smart UI v1.0.5 — A production-ready React component library by PT Praisindo Teknologi. Covers inputs, navigation, data display, feedback, and layout with a unified design system, semantic Typography tokens, and full Storybook documentation.

19 lines (18 loc) 777 B
import { CSSProperties, ElementType, ReactNode } from 'react'; export interface ContainerProps { children?: ReactNode; /** Maximum width breakpoint. false = fluid (no max-width). Default: "lg" */ maxWidth?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | false; /** If true, the container uses position: fixed */ fixed?: boolean; /** If true, removes horizontal padding (gutters) */ disableGutters?: boolean; /** Override the root element (default: "div") */ component?: ElementType; style?: CSSProperties; className?: string; id?: string; [key: string]: any; } declare const Container: import('react').ForwardRefExoticComponent<Omit<ContainerProps, "ref"> & import('react').RefAttributes<HTMLElement>>; export default Container;