AnthoLume/ngtemplates/svgs/clock.templ
Evan Reichard a881351b84
Some checks reported errors
continuous-integration/drone/push Build was killed
geez
2024-10-04 19:40:03 -04:00

21 lines
655 B
Plaintext

package svgs
templ ClockSVG(className string) {
<svg
xmlns="http://www.w3.org/2000/svg"
class={ className }
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M12 7.25C12.4142 7.25 12.75 7.58579 12.75 8V11.6893L15.0303 13.9697C15.3232 14.2626 15.3232 14.7374 15.0303 15.0303C14.7374 15.3232 14.2626 15.3232 13.9697 15.0303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V8C11.25 7.58579 11.5858 7.25 12 7.25Z"
fill="white"
></path>
</svg>
}