24 lines
924 B
JavaScript
24 lines
924 B
JavaScript
import { Box, Button, Container, Link, Stack, Typography } from "@mui/material";
|
|
import DownloadIcon from "@mui/icons-material/Download";
|
|
|
|
const LoanDescription = () => {
|
|
return (
|
|
<Box sx={{ flex: 1 }}>
|
|
<Stack alignItems={"center"} justifyContent={"center"} sx={{pt : 15}}>
|
|
<Button variant="contained" startIcon={<DownloadIcon />}>
|
|
<Link
|
|
variant="subtitle1"
|
|
sx={{ padding: 1 }}
|
|
color={"white"}
|
|
download
|
|
underline="none"
|
|
href={"/files/راهنما.pdf"}
|
|
>
|
|
دریافت فایل های راهنما
|
|
</Link>
|
|
</Button>
|
|
</Stack>
|
|
</Box>
|
|
);
|
|
};
|
|
export default LoanDescription; |