@vuu-ui/vuu-icons 2.1.4 → 2.1.5
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/index.css +7 -1
- package/package.json +1 -1
package/index.css
CHANGED
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
--vuu-svg-triangle-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 5"><path d="M4.78.558a.222.222,0,0,0-.157.065l-4,4a.222.222,0,0,0,.157.379h4a.222.222,0,0,0,.222-.222h0v-4A.222.222,0,0,0,4.78.558Z"/></svg>');
|
|
69
69
|
--vuu-svg-info-circle: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 17C11.45 17 11 16.55 11 16V12C11 11.45 11.45 11 12 11C12.55 11 13 11.45 13 12V16C13 16.55 12.55 17 12 17ZM13 9H11V7H13V9Z" fill="white"/> </svg>');
|
|
70
70
|
--vuu-svg-warn-triangle: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.47 21H19.53C21.07 21 22.03 19.33 21.26 18L13.73 4.98999C12.96 3.65999 11.04 3.65999 10.27 4.98999L2.74 18C1.97 19.33 2.93 21 4.47 21ZM12 14C11.45 14 11 13.55 11 13V11C11 10.45 11.45 9.99999 12 9.99999C12.55 9.99999 13 10.45 13 11V13C13 13.55 12.55 14 12 14ZM13 18H11V16H13V18Z"/></svg>');
|
|
71
|
-
|
|
71
|
+
--lucide-ellipsis-vertical: utl('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWVsbGlwc2lzLXZlcnRpY2FsLWljb24gbHVjaWRlLWVsbGlwc2lzLXZlcnRpY2FsIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxIi8+PGNpcmNsZSBjeD0iMTIiIGN5PSI1IiByPSIxIi8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxOSIgcj0iMSIvPjwvc3ZnPg==');
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
span[data-icon] {
|
|
@@ -95,6 +95,12 @@
|
|
|
95
95
|
width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
+
|
|
99
|
+
[data-icon="ellipsis-vertical"] {
|
|
100
|
+
--vuu-icon-svg: var(---lucide-ellipsis-vertical);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
|
|
98
104
|
[data-icon="add"] {
|
|
99
105
|
--vuu-icon-svg: var(--svg-add);
|
|
100
106
|
}
|
package/package.json
CHANGED