| 1 |
import { Attributes } from '../../../types'; |
| 2 |
|
| 3 |
export const Headlights = ({ bgColor }: Partial<Attributes>) => ( |
| 4 |
<span |
| 5 |
style={{ |
| 6 |
display: 'block', |
| 7 |
padding: '16px 0 0 16px', |
| 8 |
marginBottom: '-1px', |
| 9 |
width: '100%', |
| 10 |
textAlign: 'left', |
| 11 |
backgroundColor: bgColor, |
| 12 |
}}> |
| 13 |
<svg |
| 14 |
xmlns="http://www.w3.org/2000/svg" |
| 15 |
width={54} |
| 16 |
height={14} |
| 17 |
viewBox="0 0 54 14"> |
| 18 |
<g fill="none" fillRule="evenodd" transform="translate(1 1)"> |
| 19 |
<circle |
| 20 |
cx="6" |
| 21 |
cy="6" |
| 22 |
r="6" |
| 23 |
fill="#FF5F56" |
| 24 |
stroke="#E0443E" |
| 25 |
strokeWidth=".5"></circle> |
| 26 |
<circle |
| 27 |
cx="26" |
| 28 |
cy="6" |
| 29 |
r="6" |
| 30 |
fill="#FFBD2E" |
| 31 |
stroke="#DEA123" |
| 32 |
strokeWidth=".5"></circle> |
| 33 |
<circle |
| 34 |
cx="46" |
| 35 |
cy="6" |
| 36 |
r="6" |
| 37 |
fill="#27C93F" |
| 38 |
stroke="#1AAB29" |
| 39 |
strokeWidth=".5"></circle> |
| 40 |
</g> |
| 41 |
</svg> |
| 42 |
</span> |
| 43 |
); |
| 44 |
|