uibee 2.16.18 → 2.16.19

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 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 })] }));
3
+ return (_jsxs("a", { href: href, className: `relative ${className}`, children: [_jsxs("svg", { viewBox: '0 0 24 12', className: 'absolute -top-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uibee",
3
- "version": "2.16.18",
3
+ "version": "2.16.19",
4
4
  "description": "Shared components, functions and hooks for reuse across Login projects",
5
5
  "homepage": "https://github.com/Login-Linjeforening-for-IT/uibee#readme",
6
6
  "bugs": {
@@ -10,11 +10,11 @@ export default function Bubble({ href, className, fill, stroke, text }: BubbleTe
10
10
  return (
11
11
  <a
12
12
  href={href}
13
- className={className}
13
+ className={`relative ${className}`}
14
14
  >
15
15
  <svg
16
16
  viewBox='0 0 24 12'
17
- className='relative -top-5 h-3 w-6'
17
+ className='absolute -top-5 h-3 w-6'
18
18
  aria-hidden='true'
19
19
  >
20
20
  <path