main
Last change
on this file since 057453c was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
602 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | // @mui
|
---|
| 2 | import Box from '@mui/material/Box';
|
---|
| 3 | //
|
---|
| 4 | import Image from '../image';
|
---|
| 5 |
|
---|
| 6 | // ----------------------------------------------------------------------
|
---|
| 7 |
|
---|
| 8 | type Props = {
|
---|
| 9 | imgUrl?: string;
|
---|
| 10 | };
|
---|
| 11 |
|
---|
| 12 | export default function SingleFilePreview({ imgUrl = '' }: Props) {
|
---|
| 13 | return (
|
---|
| 14 | <Box
|
---|
| 15 | sx={{
|
---|
| 16 | p: 1,
|
---|
| 17 | top: 0,
|
---|
| 18 | left: 0,
|
---|
| 19 | width: 1,
|
---|
| 20 | height: 1,
|
---|
| 21 | position: 'absolute',
|
---|
| 22 | }}
|
---|
| 23 | >
|
---|
| 24 | <Image
|
---|
| 25 | alt="file preview"
|
---|
| 26 | src={imgUrl}
|
---|
| 27 | sx={{
|
---|
| 28 | width: 1,
|
---|
| 29 | height: 1,
|
---|
| 30 | borderRadius: 1,
|
---|
| 31 | }}
|
---|
| 32 | />
|
---|
| 33 | </Box>
|
---|
| 34 | );
|
---|
| 35 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.