summaryrefslogtreecommitdiffstats
path: root/web/react/components/file_upload_overlay.jsx
blob: 5f8ef0b0c2d56d699a043f8eabe9ae6e40e5fbca (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='center-file-overlay invisible'>
				<div>
					<i className='fa fa-upload'></i>
					<span>Drop a file to upload it.</span>
				</div>
			</div>
		);
	}
});