@jis3r/icons 2.4.0 → 2.5.0
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.
- package/dist/icons/eye.svelte +131 -0
- package/dist/icons/eye.svelte.d.ts +4 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { IconProps } from './types.js';
|
|
3
|
+
|
|
4
|
+
let {
|
|
5
|
+
color = 'currentColor',
|
|
6
|
+
size = 24,
|
|
7
|
+
strokeWidth = 2,
|
|
8
|
+
animate: animateProp = false,
|
|
9
|
+
class: className = ''
|
|
10
|
+
}: IconProps = $props();
|
|
11
|
+
|
|
12
|
+
let animating = $state(false);
|
|
13
|
+
let morphProgress = $state(0);
|
|
14
|
+
let frameId = -1;
|
|
15
|
+
let runId = 0;
|
|
16
|
+
|
|
17
|
+
const closeDurationMs = 120;
|
|
18
|
+
const openDurationMs = 160;
|
|
19
|
+
const lineY = 12;
|
|
20
|
+
const leftX = 2.062;
|
|
21
|
+
const rightX = 21.938;
|
|
22
|
+
const upperEndY = 11.652;
|
|
23
|
+
const lowerEndY = 12.348;
|
|
24
|
+
const archRadiusX = 10.75;
|
|
25
|
+
const archRadiusY = 10.75;
|
|
26
|
+
|
|
27
|
+
const easeIn = (t) => t * t * t;
|
|
28
|
+
const easeOut = (t) => 1 - Math.pow(1 - t, 3);
|
|
29
|
+
|
|
30
|
+
const topArchPath = (t) => {
|
|
31
|
+
const y = upperEndY + (lineY - upperEndY) * t;
|
|
32
|
+
const ry = Math.max(0.001, archRadiusY * (1 - t));
|
|
33
|
+
return 'M ' + leftX + ' ' + y + ' A ' + archRadiusX + ' ' + ry + ' 0 0 1 ' + rightX + ' ' + y;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const bottomArchPath = (t) => {
|
|
37
|
+
const y = lowerEndY - (lowerEndY - lineY) * t;
|
|
38
|
+
const ry = Math.max(0.001, archRadiusY * (1 - t));
|
|
39
|
+
return 'M ' + rightX + ' ' + y + ' A ' + archRadiusX + ' ' + ry + ' 0 0 1 ' + leftX + ' ' + y;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
function animateMorph(from, to, durationMs, ease, currentRunId, onDone) {
|
|
43
|
+
const start = performance.now();
|
|
44
|
+
|
|
45
|
+
const tick = (now) => {
|
|
46
|
+
if (currentRunId !== runId) return;
|
|
47
|
+
const elapsed = now - start;
|
|
48
|
+
const t = Math.min(elapsed / durationMs, 1);
|
|
49
|
+
const eased = ease(t);
|
|
50
|
+
morphProgress = from + (to - from) * eased;
|
|
51
|
+
|
|
52
|
+
if (t < 1) {
|
|
53
|
+
frameId = requestAnimationFrame(tick);
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
onDone();
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
frameId = requestAnimationFrame(tick);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function handleMouseEnter() {
|
|
64
|
+
if (animating) return;
|
|
65
|
+
if (frameId !== -1) cancelAnimationFrame(frameId);
|
|
66
|
+
runId += 1;
|
|
67
|
+
const currentRunId = runId;
|
|
68
|
+
animating = true;
|
|
69
|
+
|
|
70
|
+
animateMorph(0, 1, closeDurationMs, easeIn, currentRunId, () => {
|
|
71
|
+
animateMorph(1, 0, openDurationMs, easeOut, currentRunId, () => {
|
|
72
|
+
if (currentRunId !== runId) return;
|
|
73
|
+
animating = false;
|
|
74
|
+
morphProgress = 0;
|
|
75
|
+
frameId = -1;
|
|
76
|
+
});
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
const topOutlineD = $derived(topArchPath(morphProgress));
|
|
81
|
+
const bottomOutlineD = $derived(bottomArchPath(morphProgress));
|
|
82
|
+
</script>
|
|
83
|
+
|
|
84
|
+
<div class={className} aria-label="eye" role="img" onmouseenter={handleMouseEnter}>
|
|
85
|
+
<svg
|
|
86
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
87
|
+
width={size}
|
|
88
|
+
height={size}
|
|
89
|
+
viewBox="0 0 24 24"
|
|
90
|
+
fill="none"
|
|
91
|
+
stroke={color}
|
|
92
|
+
stroke-width={strokeWidth}
|
|
93
|
+
stroke-linecap="round"
|
|
94
|
+
stroke-linejoin="round"
|
|
95
|
+
class="eye-icon"
|
|
96
|
+
class:animate={animateProp || animating}
|
|
97
|
+
>
|
|
98
|
+
<path d={topOutlineD} class="eye-outline" />
|
|
99
|
+
<path d={bottomOutlineD} class="eye-outline" />
|
|
100
|
+
|
|
101
|
+
<circle cx="12" cy="12" r="3" class="eye-pupil" />
|
|
102
|
+
</svg>
|
|
103
|
+
</div>
|
|
104
|
+
|
|
105
|
+
<style>
|
|
106
|
+
div {
|
|
107
|
+
display: inline-block;
|
|
108
|
+
}
|
|
109
|
+
.eye-icon {
|
|
110
|
+
overflow: visible;
|
|
111
|
+
}
|
|
112
|
+
.eye-pupil {
|
|
113
|
+
transform-origin: 12px 12px;
|
|
114
|
+
}
|
|
115
|
+
.eye-icon.animate .eye-pupil {
|
|
116
|
+
animation: blinkPupil 0.28s forwards;
|
|
117
|
+
}
|
|
118
|
+
@keyframes blinkPupil {
|
|
119
|
+
0% {
|
|
120
|
+
transform: scaleY(1);
|
|
121
|
+
animation-timing-function: ease-in;
|
|
122
|
+
}
|
|
123
|
+
50% {
|
|
124
|
+
transform: scaleY(0.042);
|
|
125
|
+
animation-timing-function: ease-out;
|
|
126
|
+
}
|
|
127
|
+
100% {
|
|
128
|
+
transform: scaleY(1);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
</style>
|
package/dist/index.d.ts
CHANGED
|
@@ -213,6 +213,7 @@ export { default as Eclipse } from './icons/eclipse.svelte';
|
|
|
213
213
|
export { default as EggOff } from './icons/egg-off.svelte';
|
|
214
214
|
export { default as Expand } from './icons/expand.svelte';
|
|
215
215
|
export { default as EyeOff } from './icons/eye-off.svelte';
|
|
216
|
+
export { default as Eye } from './icons/eye.svelte';
|
|
216
217
|
export { default as FileChartColumnIncreasing } from './icons/file-chart-column-increasing.svelte';
|
|
217
218
|
export { default as FileChartColumn } from './icons/file-chart-column.svelte';
|
|
218
219
|
export { default as FileChartLine } from './icons/file-chart-line.svelte';
|
|
@@ -528,4 +529,4 @@ export { default as WineOff } from './icons/wine-off.svelte';
|
|
|
528
529
|
export { default as X } from './icons/x.svelte';
|
|
529
530
|
export { default as ZapOff } from './icons/zap-off.svelte';
|
|
530
531
|
export type { IconProps } from './icons/types.js';
|
|
531
|
-
export type IconName = 'accessibility' | 'activity' | 'airplay' | 'alarm-clock-check' | 'alarm-clock-off' | 'alarm-clock' | 'align-horizontal-space-around' | 'align-vertical-space-around' | 'anvil' | 'archive' | 'arrow-big-down-dash' | 'arrow-big-down' | 'arrow-big-left-dash' | 'arrow-big-left' | 'arrow-big-right-dash' | 'arrow-big-right' | 'arrow-big-up-dash' | 'arrow-big-up' | 'arrow-down-0-1' | 'arrow-down-1-0' | 'arrow-down-a-z' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-down-z-a' | 'arrow-down' | 'arrow-left-right' | 'arrow-left' | 'arrow-right-left' | 'arrow-right' | 'arrow-up-0-1' | 'arrow-up-1-0' | 'arrow-up-a-z' | 'arrow-up-left' | 'arrow-up-right' | 'arrow-up-z-a' | 'arrow-up' | 'audio-lines' | 'award' | 'axe' | 'axis-3d' | 'badge-alert' | 'badge-check' | 'badge-question-mark' | 'battery-charging' | 'battery-full' | 'battery-low' | 'battery-medium' | 'battery-warning' | 'battery' | 'bean-off' | 'beer-off' | 'bell-off' | 'bell-ring' | 'bell' | 'between-horizontal-end' | 'between-horizontal-start' | 'between-vertical-end' | 'between-vertical-start' | 'binary' | 'blend' | 'blocks' | 'bluetooth-off' | 'bold' | 'bolt' | 'bone' | 'book-a' | 'book-audio' | 'book-check' | 'book-dashed' | 'book-down' | 'book-headphones' | 'book-heart' | 'book-image' | 'book-key' | 'book-lock' | 'book-marked' | 'book-minus' | 'book-open-check' | 'book-open-text' | 'book-plus' | 'book-text' | 'book-type' | 'book-up-2' | 'book-up' | 'book-user' | 'book-x' | 'book' | 'bookmark-check' | 'bookmark-minus' | 'bookmark-plus' | 'bookmark-x' | 'bookmark' | 'bot-off' | 'bot' | 'boxes' | 'brain-cog' | 'briefcase-business' | 'briefcase-conveyor-belt' | 'briefcase-medical' | 'briefcase' | 'brush-cleaning' | 'brush' | 'bug-off' | 'calendar-check-2' | 'calendar-check' | 'calendar-cog' | 'calendar-days' | 'calendar-off' | 'calendar-sync' | 'camera-off' | 'candy-off' | 'captions-off' | 'cast' | 'cctv' | 'chart-bar-decreasing' | 'chart-bar-increasing' | 'chart-bar' | 'chart-column-decreasing' | 'chart-column-increasing' | 'chart-column' | 'chart-gantt' | 'chart-line' | 'chart-no-axes-column-decreasing' | 'chart-no-axes-column-increasing' | 'chart-no-axes-column' | 'chart-no-axes-combined' | 'chart-no-axes-gantt' | 'chart-pie' | 'chart-scatter' | 'chart-spline' | 'check-check' | 'check' | 'cherry' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chevrons-down-up' | 'chevrons-down' | 'chevrons-left-right' | 'chevrons-left' | 'chevrons-right-left' | 'chevrons-right' | 'chevrons-up-down' | 'chevrons-up' | 'cigarette-off' | 'circle-alert' | 'circle-arrow-down' | 'circle-arrow-left' | 'circle-arrow-out-down-left' | 'circle-arrow-out-down-right' | 'circle-arrow-out-up-left' | 'circle-arrow-out-up-right' | 'circle-arrow-right' | 'circle-arrow-up' | 'circle-check-big' | 'circle-check' | 'circle-chevron-down' | 'circle-chevron-left' | 'circle-chevron-right' | 'circle-chevron-up' | 'circle-off' | 'circle-parking-off' | 'circle-plus' | 'circle-question-mark' | 'clapperboard' | 'clipboard-check' | 'clipboard-list' | 'clipboard-pen-line' | 'clipboard-pen' | 'clipboard-x' | 'clipboard' | 'clock-1' | 'clock-10' | 'clock-11' | 'clock-12' | 'clock-2' | 'clock-3' | 'clock-4' | 'clock-5' | 'clock-6' | 'clock-7' | 'clock-8' | 'clock-9' | 'clock' | 'cloud-cog' | 'cloud-download' | 'cloud-moon' | 'cloud-off' | 'cloud-upload' | 'cog' | 'compass' | 'contrast' | 'copy-check' | 'copy' | 'cpu' | 'crop' | 'diamond-plus' | 'dice-1' | 'dice-2' | 'dice-3' | 'dice-4' | 'dice-5' | 'dice-6' | 'diff' | 'disc-3' | 'dna-off' | 'download' | 'droplet-off' | 'drum' | 'ear-off' | 'eclipse' | 'egg-off' | 'expand' | 'eye-off' | 'file-chart-column-increasing' | 'file-chart-column' | 'file-chart-line' | 'file-check-corner' | 'file-check' | 'file-cog' | 'file-down' | 'file-exclamation-point' | 'file-minus' | 'file-pen-line' | 'file-pen' | 'file-plus' | 'file-question-mark' | 'file-sliders' | 'file-stack' | 'file-terminal' | 'file-up' | 'fish-off' | 'flag-off' | 'flashlight-off' | 'flask-conical-off' | 'folder-check' | 'folder-cog' | 'folder-down' | 'folder-kanban' | 'folder-pen' | 'folder-plus' | 'folder-sync' | 'folder-up' | 'folder-x' | 'frame' | 'funnel-x' | 'gallery-horizontal-end' | 'gallery-horizontal' | 'gallery-thumbnails' | 'gallery-vertical-end' | 'gallery-vertical' | 'gauge' | 'gavel' | 'grid-2x2-check' | 'grip-horizontal' | 'grip-vertical' | 'grip' | 'hammer' | 'hand-coins' | 'hand-heart' | 'hard-drive-download' | 'hard-drive-upload' | 'headphone-off' | 'heart-off' | 'heart' | 'history' | 'hop-off' | 'house-wifi' | 'house' | 'image-down' | 'image-off' | 'image-up' | 'images' | 'infinity' | 'kanban' | 'key-round' | 'key-square' | 'key' | 'keyboard-off' | 'keyboard' | 'landmark' | 'layers' | 'layout-dashboard' | 'layout-grid' | 'layout-panel-left' | 'layout-panel-top' | 'layout-template' | 'lightbulb-off' | 'lightbulb' | 'link-2-off' | 'list-check' | 'list-checks' | 'list-restart' | 'list-todo' | 'loader-pinwheel' | 'locate-off' | 'log-out' | 'mail-check' | 'map-pin-check-inside' | 'map-pin-check' | 'map-pin-off' | 'maximize-2' | 'maximize' | 'megaphone-off' | 'message-circle-code' | 'message-circle-dashed' | 'message-circle-heart' | 'message-circle-more' | 'message-circle-off' | 'message-circle-question-mark' | 'message-circle-warning' | 'message-circle-x' | 'message-circle' | 'message-square-code' | 'message-square-dashed' | 'message-square-dot' | 'message-square-heart' | 'message-square-more' | 'message-square-off' | 'message-square-quote' | 'message-square-warning' | 'message-square-x' | 'message-square' | 'mic-off' | 'milk-off' | 'minimize-2' | 'minimize' | 'minus' | 'monitor-check' | 'monitor-cog' | 'monitor-down' | 'monitor-off' | 'monitor-up' | 'mouse-off' | 'mouse-pointer-2' | 'mouse-pointer' | 'move-diagonal-2' | 'move-diagonal' | 'move-down-left' | 'move-down-right' | 'move-down' | 'move-horizontal' | 'move-left' | 'move-right' | 'move-up-left' | 'move-up-right' | 'move-up' | 'move-vertical' | 'navigation-2-off' | 'navigation-off' | 'nfc' | 'notebook-pen' | 'nut-off' | 'octagon-alert' | 'orbit' | 'package-check' | 'paintbrush' | 'panel-bottom-close' | 'panel-bottom-open' | 'panel-bottom' | 'panel-left-close' | 'panel-left-open' | 'panel-left' | 'panel-right-close' | 'panel-right-open' | 'panel-right' | 'panel-top-close' | 'panel-top-open' | 'panel-top' | 'paperclip' | 'pen-line' | 'pen-off' | 'pen' | 'pencil-line' | 'pencil-off' | 'pencil' | 'phone-off' | 'pickaxe' | 'pin-off' | 'plane' | 'play' | 'plus' | 'pointer-off' | 'power-off' | 'printer-check' | 'rabbit' | 'radar' | 'radio-tower' | 'radio' | 'rainbow' | 'redo-dot' | 'redo' | 'refresh-ccw-dot' | 'refresh-ccw' | 'refresh-cw-off' | 'refresh-cw' | 'rocket' | 'rocking-chair' | 'rotate-ccw-key' | 'rotate-ccw' | 'rotate-cw' | 'route-off' | 'route' | 'rss' | 'satellite-dish' | 'save-off' | 'scan-text' | 'scissors' | 'search-check' | 'search' | 'send-horizontal' | 'send' | 'server-cog' | 'server-off' | 'settings' | 'shield-alert' | 'shield-check' | 'shield-off' | 'shield-plus' | 'shield-question-mark' | 'ship-wheel' | 'ship' | 'shopping-cart' | 'shovel' | 'shower-head' | 'shrink' | 'signal-high' | 'signal-low' | 'signal-medium' | 'signal-zero' | 'signal' | 'signature' | 'sliders-horizontal' | 'sliders-vertical' | 'smartphone-nfc' | 'snowflake' | 'sparkle' | 'sparkles' | 'speech' | 'spell-check' | 'square-arrow-down-left' | 'square-arrow-down-right' | 'square-arrow-down' | 'square-arrow-left' | 'square-arrow-out-down-left' | 'square-arrow-out-down-right' | 'square-arrow-out-up-left' | 'square-arrow-out-up-right' | 'square-arrow-right' | 'square-arrow-up-left' | 'square-arrow-up-right' | 'square-arrow-up' | 'square-chart-gantt' | 'square-check-big' | 'square-check' | 'square-chevron-down' | 'square-chevron-left' | 'square-chevron-right' | 'square-chevron-up' | 'square-dashed-kanban' | 'square-kanban' | 'square-parking-off' | 'square-pen' | 'square-plus' | 'square-scissors' | 'square-stack' | 'square-terminal' | 'star-off' | 'star' | 'sun' | 'sword' | 'tag' | 'telescope' | 'terminal' | 'text-align-center' | 'text-cursor-input' | 'text-cursor' | 'text-search' | 'thermometer' | 'thumbs-down' | 'thumbs-up' | 'ticket-check' | 'timer-off' | 'timer' | 'toggle-left' | 'toggle-right' | 'tornado' | 'touchpad-off' | 'trash-2' | 'trash' | 'triangle-alert' | 'umbrella-off' | 'undo-dot' | 'undo' | 'unfold-horizontal' | 'unfold-vertical' | 'unplug' | 'upload' | 'user-check' | 'user-cog' | 'user-pen' | 'user-round-check' | 'user-round-cog' | 'user-round-pen' | 'user-round' | 'user-x' | 'user' | 'users-round' | 'users' | 'vault' | 'vibrate-off' | 'vibrate' | 'video-off' | 'volume-off' | 'vote' | 'washing-machine' | 'waves' | 'webhook-off' | 'wheat-off' | 'wifi-high' | 'wifi-low' | 'wifi-off' | 'wifi-pen' | 'wifi-zero' | 'wifi' | 'wine-off' | 'x' | 'zap-off';
|
|
532
|
+
export type IconName = 'accessibility' | 'activity' | 'airplay' | 'alarm-clock-check' | 'alarm-clock-off' | 'alarm-clock' | 'align-horizontal-space-around' | 'align-vertical-space-around' | 'anvil' | 'archive' | 'arrow-big-down-dash' | 'arrow-big-down' | 'arrow-big-left-dash' | 'arrow-big-left' | 'arrow-big-right-dash' | 'arrow-big-right' | 'arrow-big-up-dash' | 'arrow-big-up' | 'arrow-down-0-1' | 'arrow-down-1-0' | 'arrow-down-a-z' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-down-z-a' | 'arrow-down' | 'arrow-left-right' | 'arrow-left' | 'arrow-right-left' | 'arrow-right' | 'arrow-up-0-1' | 'arrow-up-1-0' | 'arrow-up-a-z' | 'arrow-up-left' | 'arrow-up-right' | 'arrow-up-z-a' | 'arrow-up' | 'audio-lines' | 'award' | 'axe' | 'axis-3d' | 'badge-alert' | 'badge-check' | 'badge-question-mark' | 'battery-charging' | 'battery-full' | 'battery-low' | 'battery-medium' | 'battery-warning' | 'battery' | 'bean-off' | 'beer-off' | 'bell-off' | 'bell-ring' | 'bell' | 'between-horizontal-end' | 'between-horizontal-start' | 'between-vertical-end' | 'between-vertical-start' | 'binary' | 'blend' | 'blocks' | 'bluetooth-off' | 'bold' | 'bolt' | 'bone' | 'book-a' | 'book-audio' | 'book-check' | 'book-dashed' | 'book-down' | 'book-headphones' | 'book-heart' | 'book-image' | 'book-key' | 'book-lock' | 'book-marked' | 'book-minus' | 'book-open-check' | 'book-open-text' | 'book-plus' | 'book-text' | 'book-type' | 'book-up-2' | 'book-up' | 'book-user' | 'book-x' | 'book' | 'bookmark-check' | 'bookmark-minus' | 'bookmark-plus' | 'bookmark-x' | 'bookmark' | 'bot-off' | 'bot' | 'boxes' | 'brain-cog' | 'briefcase-business' | 'briefcase-conveyor-belt' | 'briefcase-medical' | 'briefcase' | 'brush-cleaning' | 'brush' | 'bug-off' | 'calendar-check-2' | 'calendar-check' | 'calendar-cog' | 'calendar-days' | 'calendar-off' | 'calendar-sync' | 'camera-off' | 'candy-off' | 'captions-off' | 'cast' | 'cctv' | 'chart-bar-decreasing' | 'chart-bar-increasing' | 'chart-bar' | 'chart-column-decreasing' | 'chart-column-increasing' | 'chart-column' | 'chart-gantt' | 'chart-line' | 'chart-no-axes-column-decreasing' | 'chart-no-axes-column-increasing' | 'chart-no-axes-column' | 'chart-no-axes-combined' | 'chart-no-axes-gantt' | 'chart-pie' | 'chart-scatter' | 'chart-spline' | 'check-check' | 'check' | 'cherry' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chevrons-down-up' | 'chevrons-down' | 'chevrons-left-right' | 'chevrons-left' | 'chevrons-right-left' | 'chevrons-right' | 'chevrons-up-down' | 'chevrons-up' | 'cigarette-off' | 'circle-alert' | 'circle-arrow-down' | 'circle-arrow-left' | 'circle-arrow-out-down-left' | 'circle-arrow-out-down-right' | 'circle-arrow-out-up-left' | 'circle-arrow-out-up-right' | 'circle-arrow-right' | 'circle-arrow-up' | 'circle-check-big' | 'circle-check' | 'circle-chevron-down' | 'circle-chevron-left' | 'circle-chevron-right' | 'circle-chevron-up' | 'circle-off' | 'circle-parking-off' | 'circle-plus' | 'circle-question-mark' | 'clapperboard' | 'clipboard-check' | 'clipboard-list' | 'clipboard-pen-line' | 'clipboard-pen' | 'clipboard-x' | 'clipboard' | 'clock-1' | 'clock-10' | 'clock-11' | 'clock-12' | 'clock-2' | 'clock-3' | 'clock-4' | 'clock-5' | 'clock-6' | 'clock-7' | 'clock-8' | 'clock-9' | 'clock' | 'cloud-cog' | 'cloud-download' | 'cloud-moon' | 'cloud-off' | 'cloud-upload' | 'cog' | 'compass' | 'contrast' | 'copy-check' | 'copy' | 'cpu' | 'crop' | 'diamond-plus' | 'dice-1' | 'dice-2' | 'dice-3' | 'dice-4' | 'dice-5' | 'dice-6' | 'diff' | 'disc-3' | 'dna-off' | 'download' | 'droplet-off' | 'drum' | 'ear-off' | 'eclipse' | 'egg-off' | 'expand' | 'eye-off' | 'eye' | 'file-chart-column-increasing' | 'file-chart-column' | 'file-chart-line' | 'file-check-corner' | 'file-check' | 'file-cog' | 'file-down' | 'file-exclamation-point' | 'file-minus' | 'file-pen-line' | 'file-pen' | 'file-plus' | 'file-question-mark' | 'file-sliders' | 'file-stack' | 'file-terminal' | 'file-up' | 'fish-off' | 'flag-off' | 'flashlight-off' | 'flask-conical-off' | 'folder-check' | 'folder-cog' | 'folder-down' | 'folder-kanban' | 'folder-pen' | 'folder-plus' | 'folder-sync' | 'folder-up' | 'folder-x' | 'frame' | 'funnel-x' | 'gallery-horizontal-end' | 'gallery-horizontal' | 'gallery-thumbnails' | 'gallery-vertical-end' | 'gallery-vertical' | 'gauge' | 'gavel' | 'grid-2x2-check' | 'grip-horizontal' | 'grip-vertical' | 'grip' | 'hammer' | 'hand-coins' | 'hand-heart' | 'hard-drive-download' | 'hard-drive-upload' | 'headphone-off' | 'heart-off' | 'heart' | 'history' | 'hop-off' | 'house-wifi' | 'house' | 'image-down' | 'image-off' | 'image-up' | 'images' | 'infinity' | 'kanban' | 'key-round' | 'key-square' | 'key' | 'keyboard-off' | 'keyboard' | 'landmark' | 'layers' | 'layout-dashboard' | 'layout-grid' | 'layout-panel-left' | 'layout-panel-top' | 'layout-template' | 'lightbulb-off' | 'lightbulb' | 'link-2-off' | 'list-check' | 'list-checks' | 'list-restart' | 'list-todo' | 'loader-pinwheel' | 'locate-off' | 'log-out' | 'mail-check' | 'map-pin-check-inside' | 'map-pin-check' | 'map-pin-off' | 'maximize-2' | 'maximize' | 'megaphone-off' | 'message-circle-code' | 'message-circle-dashed' | 'message-circle-heart' | 'message-circle-more' | 'message-circle-off' | 'message-circle-question-mark' | 'message-circle-warning' | 'message-circle-x' | 'message-circle' | 'message-square-code' | 'message-square-dashed' | 'message-square-dot' | 'message-square-heart' | 'message-square-more' | 'message-square-off' | 'message-square-quote' | 'message-square-warning' | 'message-square-x' | 'message-square' | 'mic-off' | 'milk-off' | 'minimize-2' | 'minimize' | 'minus' | 'monitor-check' | 'monitor-cog' | 'monitor-down' | 'monitor-off' | 'monitor-up' | 'mouse-off' | 'mouse-pointer-2' | 'mouse-pointer' | 'move-diagonal-2' | 'move-diagonal' | 'move-down-left' | 'move-down-right' | 'move-down' | 'move-horizontal' | 'move-left' | 'move-right' | 'move-up-left' | 'move-up-right' | 'move-up' | 'move-vertical' | 'navigation-2-off' | 'navigation-off' | 'nfc' | 'notebook-pen' | 'nut-off' | 'octagon-alert' | 'orbit' | 'package-check' | 'paintbrush' | 'panel-bottom-close' | 'panel-bottom-open' | 'panel-bottom' | 'panel-left-close' | 'panel-left-open' | 'panel-left' | 'panel-right-close' | 'panel-right-open' | 'panel-right' | 'panel-top-close' | 'panel-top-open' | 'panel-top' | 'paperclip' | 'pen-line' | 'pen-off' | 'pen' | 'pencil-line' | 'pencil-off' | 'pencil' | 'phone-off' | 'pickaxe' | 'pin-off' | 'plane' | 'play' | 'plus' | 'pointer-off' | 'power-off' | 'printer-check' | 'rabbit' | 'radar' | 'radio-tower' | 'radio' | 'rainbow' | 'redo-dot' | 'redo' | 'refresh-ccw-dot' | 'refresh-ccw' | 'refresh-cw-off' | 'refresh-cw' | 'rocket' | 'rocking-chair' | 'rotate-ccw-key' | 'rotate-ccw' | 'rotate-cw' | 'route-off' | 'route' | 'rss' | 'satellite-dish' | 'save-off' | 'scan-text' | 'scissors' | 'search-check' | 'search' | 'send-horizontal' | 'send' | 'server-cog' | 'server-off' | 'settings' | 'shield-alert' | 'shield-check' | 'shield-off' | 'shield-plus' | 'shield-question-mark' | 'ship-wheel' | 'ship' | 'shopping-cart' | 'shovel' | 'shower-head' | 'shrink' | 'signal-high' | 'signal-low' | 'signal-medium' | 'signal-zero' | 'signal' | 'signature' | 'sliders-horizontal' | 'sliders-vertical' | 'smartphone-nfc' | 'snowflake' | 'sparkle' | 'sparkles' | 'speech' | 'spell-check' | 'square-arrow-down-left' | 'square-arrow-down-right' | 'square-arrow-down' | 'square-arrow-left' | 'square-arrow-out-down-left' | 'square-arrow-out-down-right' | 'square-arrow-out-up-left' | 'square-arrow-out-up-right' | 'square-arrow-right' | 'square-arrow-up-left' | 'square-arrow-up-right' | 'square-arrow-up' | 'square-chart-gantt' | 'square-check-big' | 'square-check' | 'square-chevron-down' | 'square-chevron-left' | 'square-chevron-right' | 'square-chevron-up' | 'square-dashed-kanban' | 'square-kanban' | 'square-parking-off' | 'square-pen' | 'square-plus' | 'square-scissors' | 'square-stack' | 'square-terminal' | 'star-off' | 'star' | 'sun' | 'sword' | 'tag' | 'telescope' | 'terminal' | 'text-align-center' | 'text-cursor-input' | 'text-cursor' | 'text-search' | 'thermometer' | 'thumbs-down' | 'thumbs-up' | 'ticket-check' | 'timer-off' | 'timer' | 'toggle-left' | 'toggle-right' | 'tornado' | 'touchpad-off' | 'trash-2' | 'trash' | 'triangle-alert' | 'umbrella-off' | 'undo-dot' | 'undo' | 'unfold-horizontal' | 'unfold-vertical' | 'unplug' | 'upload' | 'user-check' | 'user-cog' | 'user-pen' | 'user-round-check' | 'user-round-cog' | 'user-round-pen' | 'user-round' | 'user-x' | 'user' | 'users-round' | 'users' | 'vault' | 'vibrate-off' | 'vibrate' | 'video-off' | 'volume-off' | 'vote' | 'washing-machine' | 'waves' | 'webhook-off' | 'wheat-off' | 'wifi-high' | 'wifi-low' | 'wifi-off' | 'wifi-pen' | 'wifi-zero' | 'wifi' | 'wine-off' | 'x' | 'zap-off';
|
package/dist/index.js
CHANGED
|
@@ -213,6 +213,7 @@ export { default as Eclipse } from './icons/eclipse.svelte';
|
|
|
213
213
|
export { default as EggOff } from './icons/egg-off.svelte';
|
|
214
214
|
export { default as Expand } from './icons/expand.svelte';
|
|
215
215
|
export { default as EyeOff } from './icons/eye-off.svelte';
|
|
216
|
+
export { default as Eye } from './icons/eye.svelte';
|
|
216
217
|
export { default as FileChartColumnIncreasing } from './icons/file-chart-column-increasing.svelte';
|
|
217
218
|
export { default as FileChartColumn } from './icons/file-chart-column.svelte';
|
|
218
219
|
export { default as FileChartLine } from './icons/file-chart-line.svelte';
|