@wavv/ui 2.4.8-alpha.2 → 2.4.8-alpha.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.
|
@@ -105,6 +105,7 @@ declare const icons: {
|
|
|
105
105
|
readonly paragraph: ComponentType<WrappedIconProps>;
|
|
106
106
|
readonly pause: ComponentType<WrappedIconProps>;
|
|
107
107
|
readonly 'pause-circle': ComponentType<WrappedIconProps>;
|
|
108
|
+
readonly percent: ComponentType<WrappedIconProps>;
|
|
108
109
|
readonly person: ComponentType<WrappedIconProps>;
|
|
109
110
|
readonly 'person-add': ComponentType<WrappedIconProps>;
|
|
110
111
|
readonly 'person-check': ComponentType<WrappedIconProps>;
|
|
@@ -138,6 +139,7 @@ declare const icons: {
|
|
|
138
139
|
readonly stop: ComponentType<WrappedIconProps>;
|
|
139
140
|
readonly 'stop-circle': ComponentType<WrappedIconProps>;
|
|
140
141
|
readonly strikethrough: ComponentType<WrappedIconProps>;
|
|
142
|
+
readonly tag: ComponentType<WrappedIconProps>;
|
|
141
143
|
readonly template: ComponentType<WrappedIconProps>;
|
|
142
144
|
readonly transfer: ComponentType<WrappedIconProps>;
|
|
143
145
|
readonly trash: ComponentType<WrappedIconProps>;
|
|
@@ -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, 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, 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, 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";
|
|
2
2
|
import createWrappedIcon from "./createWrappedIcon.js";
|
|
3
3
|
const icons = {
|
|
4
4
|
'activity-history': createWrappedIcon(IdCard),
|
|
@@ -105,6 +105,7 @@ const icons = {
|
|
|
105
105
|
paragraph: createWrappedIcon(Pilcrow),
|
|
106
106
|
pause: createWrappedIcon(Pause),
|
|
107
107
|
'pause-circle': createWrappedIcon(CirclePause),
|
|
108
|
+
percent: createWrappedIcon(Percent),
|
|
108
109
|
person: createWrappedIcon(UserRound),
|
|
109
110
|
'person-add': createWrappedIcon(UserRoundPlus),
|
|
110
111
|
'person-check': createWrappedIcon(UserRoundCheck),
|
|
@@ -138,6 +139,7 @@ const icons = {
|
|
|
138
139
|
stop: createWrappedIcon(Square),
|
|
139
140
|
'stop-circle': createWrappedIcon(CircleStop),
|
|
140
141
|
strikethrough: createWrappedIcon(Strikethrough),
|
|
142
|
+
tag: createWrappedIcon(Tag),
|
|
141
143
|
template: createWrappedIcon(FileText),
|
|
142
144
|
transfer: createWrappedIcon(ArrowRightLeft),
|
|
143
145
|
trash: createWrappedIcon(Trash2),
|