UNPKG
@evercoder/react-circular-slider-bar
Version:
latest (1.3.5)
rc1.3.7 (1.3.7-develop)
1.3.7-develop
1.3.5
1.3.4
1.3.3
1.3.2
A circular slider component for react
alexsyo/react-circular-slider-bar
@evercoder/react-circular-slider-bar
/
src
/
Track
/
index.js
14 lines
(12 loc)
•
275 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
React
from
'react'
;
const
Track
= (
{ width, color }
) => (
<
div
id
=
"track"
style
=
{{
width:
'
100
%',
height:
'
100
%',
border:
`${
width
}
px
solid
${
color
}`,
borderRadius:
'
100
%',
position:
'
absolute
' }} />
);
export
default
Track
;