@insymetri/styleguide 0.1.1 → 0.1.2

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,5 +1,4 @@
1
1
  <script lang="ts">
2
- import Icon from '@iconify/svelte'
3
2
  import {icons, type IconName} from '../icons'
4
3
 
5
4
  interface Props {
@@ -11,4 +10,12 @@
11
10
  let {icon, class: className = '', ...rest}: Props = $props()
12
11
  </script>
13
12
 
14
- <Icon icon={icons[icon]} class={className} {...rest} />
13
+ <svg
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ viewBox="0 0 256 256"
16
+ fill="currentColor"
17
+ class={className}
18
+ {...rest}
19
+ >
20
+ {@html icons[icon]}
21
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insymetri/styleguide",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Insymetri shared UI component library built with Svelte 5",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -47,7 +47,6 @@
47
47
  }
48
48
  },
49
49
  "dependencies": {
50
- "@iconify/svelte": "^4.0.0",
51
50
  "@internationalized/date": "^3.10.0",
52
51
  "bits-ui": "^2.11.4",
53
52
  "svelte-sonner": "^1.0.6"