@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
10 lines (9 loc) • 323 B
TypeScript
import React from "react";
import { DefaultTheme } from "styled-components";
export interface ContainerProps {
children: React.ReactNode;
maxWidth?: "sm" | "md" | "lg" | "xl" | "full";
fullWidth?: boolean;
padding?: keyof DefaultTheme["spacing"];
}
export declare const Container: React.FC<ContainerProps>;