@wavv/ui 2.4.10 → 2.4.12
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.
|
@@ -18,6 +18,7 @@ declare const icons: {
|
|
|
18
18
|
readonly bug: ComponentType<WrappedIconProps>;
|
|
19
19
|
readonly bulb: ComponentType<WrappedIconProps>;
|
|
20
20
|
readonly calendar: ComponentType<WrappedIconProps>;
|
|
21
|
+
readonly callboards: ComponentType<WrappedIconProps>;
|
|
21
22
|
readonly camera: ComponentType<WrappedIconProps>;
|
|
22
23
|
readonly card: ComponentType<WrappedIconProps>;
|
|
23
24
|
readonly cart: ComponentType<WrappedIconProps>;
|
|
@@ -152,6 +153,7 @@ declare const icons: {
|
|
|
152
153
|
readonly 'vol-on': ComponentType<WrappedIconProps>;
|
|
153
154
|
readonly warning: ComponentType<WrappedIconProps>;
|
|
154
155
|
readonly 'warning-circle': ComponentType<WrappedIconProps>;
|
|
156
|
+
readonly workflow: ComponentType<WrappedIconProps>;
|
|
155
157
|
readonly youtube: ComponentType<WrappedIconProps>;
|
|
156
158
|
};
|
|
157
159
|
export type IconNames = keyof typeof 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, CirclePause, CirclePlay, CirclePlus, CircleQuestionMark, CircleStop, CircleUserRound, CircleX, Clapperboard, Clock, Copy, CopyCheck, CopyPlus, CreditCard, Download, Ear, EllipsisVertical, ExternalLink, Eye, EyeOff, Facebook, FileText, Flag, FlaskConical, 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, 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, SquarePen, SquareStack, Star, Strikethrough, Tag, TextQuote, Trash2, TriangleAlert, Trophy, Underline, Undo, Upload, UserRound, UserRoundCheck, UserRoundPlus, UserRoundX, Users, Video, Voicemail, Volume2, X, Youtube } from "lucide-react";
|
|
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, CirclePause, CirclePlay, CirclePlus, CircleQuestionMark, CircleStop, CircleUserRound, CircleX, Clapperboard, Clock, Copy, CopyCheck, CopyPlus, CreditCard, Download, Ear, EllipsisVertical, ExternalLink, Eye, EyeOff, Facebook, FileText, Flag, FlaskConical, 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, 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";
|
|
2
2
|
import createWrappedIcon from "./createWrappedIcon.js";
|
|
3
3
|
const icons = {
|
|
4
4
|
'activity-history': createWrappedIcon(IdCard),
|
|
@@ -18,6 +18,7 @@ const icons = {
|
|
|
18
18
|
bug: createWrappedIcon(Bug),
|
|
19
19
|
bulb: createWrappedIcon(Lightbulb),
|
|
20
20
|
calendar: createWrappedIcon(CalendarDays),
|
|
21
|
+
callboards: createWrappedIcon(SquareKanban),
|
|
21
22
|
camera: createWrappedIcon(Camera),
|
|
22
23
|
card: createWrappedIcon(CreditCard),
|
|
23
24
|
cart: createWrappedIcon(ShoppingCart),
|
|
@@ -152,6 +153,7 @@ const icons = {
|
|
|
152
153
|
'vol-on': createWrappedIcon(Volume2),
|
|
153
154
|
warning: createWrappedIcon(TriangleAlert),
|
|
154
155
|
'warning-circle': createWrappedIcon(CircleAlert),
|
|
156
|
+
workflow: createWrappedIcon(Workflow),
|
|
155
157
|
youtube: createWrappedIcon(Youtube)
|
|
156
158
|
};
|
|
157
159
|
const Icon_icons = icons;
|