source: src/components/upload/preview-single-file.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 602 bytes
Line 
1// @mui
2import Box from '@mui/material/Box';
3//
4import Image from '../image';
5
6// ----------------------------------------------------------------------
7
8type Props = {
9 imgUrl?: string;
10};
11
12export 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.