* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
12 lines
262 B
JavaScript
12 lines
262 B
JavaScript
import React from 'react';
|
|
|
|
function Bar({ start, end, color = '#CCCCCC' }) {
|
|
return (
|
|
<div
|
|
style={{ left: `${start}%`, right: `${end}%`, backgroundColor: color }}
|
|
className="bg-red absolute top-0 left-0 h-4"
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default Bar;
|