25 lines
715 B
JavaScript
25 lines
715 B
JavaScript
import { PropTypes } from "prop-types";
|
|
import { Grid } from "../../../../components/grid/Grid";
|
|
import TimelineOppositeContent from "@mui/lab/TimelineOppositeContent";
|
|
import { Typography } from "@mui/material";
|
|
|
|
export const SlaghterCheckRequestTitle = ({ file }) => {
|
|
return (
|
|
<Grid container direction="column" flexWrap="nowrap" flex="1">
|
|
<Grid container>
|
|
<Grid>
|
|
<TimelineOppositeContent>
|
|
<Typography variant="body1" fontWeight="bold">
|
|
مرحله تایید کشتارگاه
|
|
</Typography>
|
|
</TimelineOppositeContent>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
);
|
|
};
|
|
|
|
SlaghterCheckRequestTitle.propTypes = {
|
|
file: PropTypes.any,
|
|
};
|