Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 7427 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
7386 stevensc 1
import React from 'react'
2
import { CloseButtonContainer, thumbInnerStyle, thumbStyle } from '../../assets/styles/js-styles/Dropzone'
3
 
4
const FilePreview = ({ children, onDeleteFileHandler }) => {
5
 
6
    return (
7
        <div
8
            style={{
9
                ...thumbStyle,
10
                width: "auto",
11
                height: "auto"
12
            }}
13
        >
14
            <div style={thumbInnerStyle}>
15
                {children}
16
            </div>
17
            <div
18
                style={CloseButtonContainer}
19
                onClick={onDeleteFileHandler}
20
            >
21
                <img
22
                    src="/css/icons/x-circle-fill.svg"
23
                    alt="close-button"
24
                    style={{ width: "100%", height: "100%" }}
25
                />
26
            </div>
27
        </div>
28
    )
29
}
30
export default FilePreview