generated from penpot/penpot-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (66 loc) · 2.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Penpot Squircles Plugin</title>
<link rel="icon" type="image/png" href="content/icon.png" />
</head>
<body>
<main>
<section class="rows">
<label for="width">
Width
<input
min="4"
class="input"
type="number"
placeholder="Width"
id="width"
value="64"
/>
</label>
<label for="height">
Height
<input
min="4"
class="input"
type="number"
placeholder="Height"
id="height"
value="64"
/>
</label>
</section>
<label for="radius">
Shape Radius
<input
min="2"
class="input"
type="number"
placeholder="Border Radius"
id="radius"
value="32"
/>
</label>
<label id="radius-recommendation">Recommended radius: 32px</label>
<section style="gap: 4px">
<button
type="button"
data-appearance="primary"
data-handler="insert-shape"
>
Insert Squircle
</button>
<!--<button
type="button"
data-appearance="secondary"
data-handler="copy-svg"
>
Copy SVG
</button>-->
</section>
</main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>