Files
mocoapp-browser-extension/src/js/components/shared/StopWatch.js
2019-10-10 14:56:38 +02:00

12 lines
280 B
JavaScript

import React from "react"
import stopWatch from "images/icons/stopwatch-light.svg"
export default function StopWatch() {
return (
<i
dangerouslySetInnerHTML={{ __html: stopWatch }}
style={{ width: "22px", color: "white", display: "inline-block" }}
/>
)
}