50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
import React from "react";
|
|
import Card from "@mui/material/Card";
|
|
import { Typography } from "@mui/material";
|
|
import Box from '@mui/material/Box';
|
|
import Stepper from '@mui/material/Stepper';
|
|
import Step from '@mui/material/Step';
|
|
import StepLabel from '@mui/material/StepLabel';
|
|
|
|
const steps = [
|
|
'Select master blaster campaign settings',
|
|
'Create an ad group',
|
|
'Create an ad',
|
|
];
|
|
|
|
export default function AlternativeLabel() {
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: '10px'
|
|
}}
|
|
>
|
|
Alternative Label
|
|
</Typography>
|
|
|
|
<Box sx={{ width: '100%' }}>
|
|
<Stepper activeStep={1} alternativeLabel className="direction-ltr">
|
|
{steps.map((label) => (
|
|
<Step key={label}>
|
|
<StepLabel>{label}</StepLabel>
|
|
</Step>
|
|
))}
|
|
</Stepper>
|
|
</Box>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|