import React from 'react' import classnames from 'classnames' // Taken from StackOverflow // http://stackoverflow.com/questions/15900485/correct-way-to-convert-size-in-bytes-to-kb-mb-gb-in-javascript function formatSize(bytes) { if (bytes === 0) return '0 Bytes' const k = 1000 const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'] const i = Math.floor(Math.log(bytes) / Math.log(k)) return (bytes / Math.pow(k, i)).toPrecision(3) + ' ' + sizes[i] } export default class Spinner extends React.Component { render() { const classes = classnames('spinner', { 'spinner-animated': this.props.animated }) return
{this.props.name === null ? null
: