uibee 2.16.16 → 2.16.17
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
export default function Bubble({ href, className, fill, stroke, text }) {
|
|
3
|
-
return (_jsxs("a", { href: href, className: className, children: [_jsxs("svg", { viewBox: '0 0 24 12', className: 'relative -top-5
|
|
3
|
+
return (_jsxs("a", { href: href, className: className, children: [_jsxs("svg", { viewBox: '0 0 24 12', className: 'relative -top-4.5 h-3 w-6', "aria-hidden": 'true', children: [_jsx("path", { d: 'M12 0 24 12H0Z', fill: fill, stroke: stroke, strokeWidth: '1.5', strokeLinejoin: 'round' }), _jsx("path", { d: 'M12 0 24 12H0Z', fill: fill })] }), _jsx("span", { children: text })] }));
|
|
4
4
|
}
|
package/dist/src/globals.css
CHANGED
|
@@ -333,8 +333,8 @@
|
|
|
333
333
|
.end {
|
|
334
334
|
inset-inline-end: var(--spacing);
|
|
335
335
|
}
|
|
336
|
-
.-top-5 {
|
|
337
|
-
top: calc(var(--spacing) * -5);
|
|
336
|
+
.-top-4\.5 {
|
|
337
|
+
top: calc(var(--spacing) * -4.5);
|
|
338
338
|
}
|
|
339
339
|
.top-0 {
|
|
340
340
|
top: calc(var(--spacing) * 0);
|
|
@@ -369,9 +369,6 @@
|
|
|
369
369
|
.right-4 {
|
|
370
370
|
right: calc(var(--spacing) * 4);
|
|
371
371
|
}
|
|
372
|
-
.right-6 {
|
|
373
|
-
right: calc(var(--spacing) * 6);
|
|
374
|
-
}
|
|
375
372
|
.bottom-0 {
|
|
376
373
|
bottom: calc(var(--spacing) * 0);
|
|
377
374
|
}
|
package/package.json
CHANGED