@wavv/ui 2.8.2 → 2.8.4
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.
|
@@ -7,7 +7,11 @@ declare const icons: {
|
|
|
7
7
|
readonly announce: ComponentType<WrappedIconProps>;
|
|
8
8
|
readonly 'arrow-down': ComponentType<WrappedIconProps>;
|
|
9
9
|
readonly 'arrow-left': ComponentType<WrappedIconProps>;
|
|
10
|
+
readonly 'arrow-left-from-line': ComponentType<WrappedIconProps>;
|
|
11
|
+
readonly 'arrow-left-to-line': ComponentType<WrappedIconProps>;
|
|
10
12
|
readonly 'arrow-right': ComponentType<WrappedIconProps>;
|
|
13
|
+
readonly 'arrow-right-from-line': ComponentType<WrappedIconProps>;
|
|
14
|
+
readonly 'arrow-right-to-line': ComponentType<WrappedIconProps>;
|
|
11
15
|
readonly 'arrow-up': ComponentType<WrappedIconProps>;
|
|
12
16
|
readonly attachment: ComponentType<WrappedIconProps>;
|
|
13
17
|
readonly auto: ComponentType<WrappedIconProps>;
|
|
@@ -166,6 +170,7 @@ declare const icons: {
|
|
|
166
170
|
readonly 'warning-circle': ComponentType<WrappedIconProps>;
|
|
167
171
|
readonly automation: ComponentType<WrappedIconProps>;
|
|
168
172
|
readonly youtube: ComponentType<WrappedIconProps>;
|
|
173
|
+
readonly zap: ComponentType<WrappedIconProps>;
|
|
169
174
|
};
|
|
170
175
|
export type IconNames = keyof typeof icons;
|
|
171
176
|
export default icons;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ArrowDown, ArrowDownWideNarrow, ArrowLeft, ArrowRight, ArrowRightLeft, ArrowUp, ArrowUpWideNarrow, BadgeCheck, Ban, Bell, BellDot, Bold, Bot, Braces, Bug, CalendarDays, Camera, ChartColumn, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ChevronsLeft, ChevronsRight, ChevronsUpDown, Circle, CircleAlert, CircleCheck, CircleDotDashed, CirclePause, CirclePlay, CirclePlus, CircleQuestionMark, CircleStop, CircleUserRound, CircleX, Clapperboard, Clock, Copy, CopyCheck, CopyPlus, CreditCard, Database, Delete, Download, Ear, EllipsisVertical, ExternalLink, Eye, EyeOff, Facebook, FileText, FileType, Flag, FlaskConical, Folder, FolderInput, FolderOutput, FolderPlus, FolderX, Frown, Funnel, Globe, GripVertical, Hash, Heading, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, Heart, Highlighter, Hourglass, House, IdCard, Info, Instagram, Italic, Kanban, Layers2, LayoutDashboard, Lightbulb, Link, Linkedin, List, ListChecks, ListFilter, ListOrdered, ListTodo, Loader, LockKeyhole, LockKeyholeOpen, LogIn, LogOut, MapPin, MapPinned, Maximize2, Megaphone, Meh, Menu, Merge, MessageSquareMore, Mic, MicOff, Minimize2, Minus, MonitorSmartphone, NotebookPen, Paperclip, Pause, Pencil, Percent, Pilcrow, Pin, PinOff, Play, Plus, Redo, RefreshCcwDot, RefreshCw, Rocket, RotateCw, Search, Send, Settings, Share, Share2, Shield, ShieldCheck, ShieldOff, ShieldPlus, ShoppingCart, Smartphone, Smile, Sparkles, Square, SquareKanban, SquarePen, SquareStack, Star, Strikethrough, Tag, TextQuote, Trash2, TriangleAlert, Trophy, Underline, Undo, Upload, UserRound, UserRoundCheck, UserRoundPlus, UserRoundX, Users, Video, Voicemail, Volume2, Workflow, X, Youtube } from "lucide-react";
|
|
1
|
+
import { ArrowDown, ArrowDownWideNarrow, ArrowLeft, ArrowLeftFromLine, ArrowLeftToLine, ArrowRight, ArrowRightFromLine, ArrowRightLeft, ArrowRightToLine, ArrowUp, ArrowUpWideNarrow, BadgeCheck, Ban, Bell, BellDot, Bold, Bot, Braces, Bug, CalendarDays, Camera, ChartColumn, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ChevronsLeft, ChevronsRight, ChevronsUpDown, Circle, CircleAlert, CircleCheck, CircleDotDashed, CirclePause, CirclePlay, CirclePlus, CircleQuestionMark, CircleStop, CircleUserRound, CircleX, Clapperboard, Clock, Copy, CopyCheck, CopyPlus, CreditCard, Database, Delete, Download, Ear, EllipsisVertical, ExternalLink, Eye, EyeOff, Facebook, FileText, FileType, Flag, FlaskConical, Folder, FolderInput, FolderOutput, FolderPlus, FolderX, Frown, Funnel, Globe, GripVertical, Hash, Heading, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, Heart, Highlighter, Hourglass, House, IdCard, Info, Instagram, Italic, Kanban, Layers2, LayoutDashboard, Lightbulb, Link, Linkedin, List, ListChecks, ListFilter, ListOrdered, ListTodo, Loader, LockKeyhole, LockKeyholeOpen, LogIn, LogOut, MapPin, MapPinned, Maximize2, Megaphone, Meh, Menu, Merge, MessageSquareMore, Mic, MicOff, Minimize2, Minus, MonitorSmartphone, NotebookPen, Paperclip, Pause, Pencil, Percent, Pilcrow, Pin, PinOff, Play, Plus, Redo, RefreshCcwDot, RefreshCw, Rocket, RotateCw, Search, Send, Settings, Share, Share2, Shield, ShieldCheck, ShieldOff, ShieldPlus, ShoppingCart, Smartphone, Smile, Sparkles, Square, SquareKanban, SquarePen, SquareStack, Star, Strikethrough, Tag, TextQuote, Trash2, TriangleAlert, Trophy, Underline, Undo, Upload, UserRound, UserRoundCheck, UserRoundPlus, UserRoundX, Users, Video, Voicemail, Volume2, Workflow, X, Youtube, Zap } from "lucide-react";
|
|
2
2
|
import createWrappedIcon from "./createWrappedIcon.js";
|
|
3
3
|
const icons = {
|
|
4
4
|
'activity-history': createWrappedIcon(IdCard),
|
|
@@ -7,7 +7,11 @@ const icons = {
|
|
|
7
7
|
announce: createWrappedIcon(Megaphone),
|
|
8
8
|
'arrow-down': createWrappedIcon(ArrowDown),
|
|
9
9
|
'arrow-left': createWrappedIcon(ArrowLeft),
|
|
10
|
+
'arrow-left-from-line': createWrappedIcon(ArrowLeftFromLine),
|
|
11
|
+
'arrow-left-to-line': createWrappedIcon(ArrowLeftToLine),
|
|
10
12
|
'arrow-right': createWrappedIcon(ArrowRight),
|
|
13
|
+
'arrow-right-from-line': createWrappedIcon(ArrowRightFromLine),
|
|
14
|
+
'arrow-right-to-line': createWrappedIcon(ArrowRightToLine),
|
|
11
15
|
'arrow-up': createWrappedIcon(ArrowUp),
|
|
12
16
|
attachment: createWrappedIcon(Paperclip),
|
|
13
17
|
auto: createWrappedIcon(RefreshCcwDot),
|
|
@@ -165,7 +169,8 @@ const icons = {
|
|
|
165
169
|
warning: createWrappedIcon(TriangleAlert),
|
|
166
170
|
'warning-circle': createWrappedIcon(CircleAlert),
|
|
167
171
|
automation: createWrappedIcon(Workflow),
|
|
168
|
-
youtube: createWrappedIcon(Youtube)
|
|
172
|
+
youtube: createWrappedIcon(Youtube),
|
|
173
|
+
zap: createWrappedIcon(Zap)
|
|
169
174
|
};
|
|
170
175
|
const Icon_icons = icons;
|
|
171
176
|
export { Icon_icons as default };
|