RS
REPLY Shippers
Drawer Width - Copy this React, Mui Component to your project
import React from "react"; import { Box, Typography } from "@mui/material"; import { styled } from "@mui/system"; return ( <StyledContainer> <ContentWrapper> <Typography variant="h6" sx={{ fontWeight: 600, color: "#1F2937" }}> Content Section </Typography> {children} </ContentWrapper> </StyledContainer> ); };
Prompt
