Last active
May 31, 2019 20:17
-
-
Save leetheguy/8d3e5686ca097353d1fdf09ee1bbdc33 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Component } from '@stencil/core'; | |
| @Component({ | |
| tag: 'clock-face' | |
| }) | |
| export class ClockFace { | |
| render() { | |
| return ( | |
| <svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"> | |
| <circle cx="100" cy="100" r="95" stroke-width="10px" stroke="black" fill="transparent"/> | |
| <line id="hour-hand" x1="100" y1="100" x2="100" y2="60" stroke="black" stroke-width="10" stroke-linecap="round"/> | |
| <line id="minute-hand" x1="100" y1="100" x2="100" y2="30" stroke="black" stroke-width="8" stroke-linecap="round"/> | |
| <line id="second-hand" x1="100" y1="100" x2="100" y2="30" stroke="black" stroke-width="2" stroke-linecap="round"/> | |
| </svg> | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment