@dorsk/tsumikit 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
| 'settings'
|
|
31
31
|
| 'star'
|
|
32
32
|
| 'stop'
|
|
33
|
+
| 'tag'
|
|
33
34
|
| 'trash'
|
|
34
35
|
| 'upload'
|
|
35
36
|
| 'warning'
|
|
@@ -127,6 +128,8 @@
|
|
|
127
128
|
<path d="M21 12a9 9 0 1 1-2.64-6.36" /><path d="M21 3v6h-6" />
|
|
128
129
|
{:else if name === 'stop'}
|
|
129
130
|
<rect x="6" y="6" width="12" height="12" rx="1.5" />
|
|
131
|
+
{:else if name === 'tag'}
|
|
132
|
+
<path d="M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" /><path d="M7.5 7.5h.01" />
|
|
130
133
|
{:else if name === 'star'}
|
|
131
134
|
<path d="M12 2.5l2.9 5.9 6.5.95-4.7 4.58 1.1 6.47L12 17.9l-5.8 3.05 1.1-6.47-4.7-4.58 6.5-.95z" />
|
|
132
135
|
{:else if name === 'live'}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type IconName = 'archive' | 'back' | 'check' | 'chevron-down' | 'copy' | 'download' | 'edit' | 'external' | 'filter' | 'folder' | 'fork' | 'image' | 'info' | 'link' | 'live' | 'markdown' | 'menu' | 'more' | 'plus' | 'retry' | 'search' | 'send' | 'settings' | 'star' | 'stop' | 'trash' | 'upload' | 'warning' | 'x';
|
|
1
|
+
export type IconName = 'archive' | 'back' | 'check' | 'chevron-down' | 'copy' | 'download' | 'edit' | 'external' | 'filter' | 'folder' | 'fork' | 'image' | 'info' | 'link' | 'live' | 'markdown' | 'menu' | 'more' | 'plus' | 'retry' | 'search' | 'send' | 'settings' | 'star' | 'stop' | 'tag' | 'trash' | 'upload' | 'warning' | 'x';
|
|
2
2
|
import type { Snippet } from 'svelte';
|
|
3
3
|
type $$ComponentProps = {
|
|
4
4
|
/** Named glyph from the registry. Omit when supplying `children`. */
|
package/package.json
CHANGED