summaryrefslogtreecommitdiffstats
path: root/web/react/components/file_upload_overlay.jsx
blob: a82f02af125e49b5d7fbd7c7c8b0f56072ddba9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.

module.exports = React.createClass({
    displayName: 'FileUploadOverlay',
    render: function() {
        return (
            <div className='file-overlay center-file-overlay invisible'>
                <div>
                    <i className='fa fa-upload'></i>
                    <span>Drop a file to upload it.</span>
                </div>
            </div>
        );
    }
});