Use stop-watch icon in timer view

This commit is contained in:
manubo
2019-10-02 17:04:46 +02:00
parent 7221d26e17
commit 44d420c630
5 changed files with 20 additions and 15 deletions

View File

@@ -0,0 +1,11 @@
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" }}
/>
)
}