@solar-icons/vue 2.0.0-beta.0 → 2.0.0-beta.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.
- package/README.md +28 -79
- package/dist/icons/broken/radial-blur.d.mts +1 -1
- package/dist/icons/broken/radial-blur.mjs +1 -1
- package/dist/icons/dynamic/airbuds-left.d.mts +1 -1
- package/dist/icons/dynamic/airbuds-right.d.mts +1 -1
- package/dist/icons/dynamic/radial-blur.d.mts +3 -3
- package/dist/icons/line-duotone/airbuds-left.d.mts +1 -1
- package/dist/icons/line-duotone/airbuds-left.mjs +1 -1
- package/dist/icons/line-duotone/airbuds-right.d.mts +1 -1
- package/dist/icons/line-duotone/airbuds-right.mjs +1 -1
- package/dist/icons/line-duotone/radial-blur.d.mts +1 -1
- package/dist/icons/line-duotone/radial-blur.mjs +1 -1
- package/dist/icons/linear/radial-blur.d.mts +1 -1
- package/dist/icons/linear/radial-blur.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,109 +1,58 @@
|
|
|
1
1
|
# @solar-icons/vue
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Vue components for Solar Icons. This package provides 7,476 SVG icons across 6 styles (Bold, Broken, Linear, Outline, Bold Duotone, Line Duotone), optimized for Vue applications.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Features
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
- **7,476 SVGs:** 1,246 unique icons in 6 styles. Designed by 480 Design.
|
|
8
|
+
- **Tree-shakeable:** Import only the icons you use.
|
|
9
|
+
- **Global configuration:** Set defaults for size, color, and stroke width using `<SolarProvider>`.
|
|
10
|
+
- **Customizable:** Override size, color, and stroke width per icon via props or CSS variables.
|
|
11
|
+
- **Duotone support:** Secondary color controls for `bold-duotone` and `line-duotone` styles.
|
|
12
|
+
- **TypeScript:** Typed components and props.
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
```sh
|
|
8
17
|
npm install @solar-icons/vue
|
|
9
18
|
```
|
|
10
19
|
|
|
11
20
|
## Usage
|
|
12
21
|
|
|
13
|
-
Import and render components:
|
|
14
|
-
|
|
15
22
|
```vue
|
|
23
|
+
<script setup>
|
|
24
|
+
import { HomeIcon, LoginIcon } from '@solar-icons/vue/linear'
|
|
25
|
+
</script>
|
|
26
|
+
|
|
16
27
|
<template>
|
|
17
28
|
<div>
|
|
18
|
-
<
|
|
19
|
-
<
|
|
29
|
+
<HomeIcon />
|
|
30
|
+
<LoginIcon color="#3b82f6" :size="32" :strokeWidth="2" />
|
|
20
31
|
</div>
|
|
21
32
|
</template>
|
|
22
|
-
|
|
23
|
-
<script setup>
|
|
24
|
-
import { ArrowUp } from '@solar-icons/vue'
|
|
25
|
-
import { Arrows } from '@solar-icons/vue/category'
|
|
26
|
-
</script>
|
|
27
33
|
```
|
|
28
34
|
|
|
29
|
-
###
|
|
35
|
+
### Global Configuration (Provider)
|
|
30
36
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
- **`size`**: Width and height (e.g., `24`, `"1.5em"`, default: `24`).
|
|
34
|
-
- **`color`**: Icon color (e.g., `"#000"`, `"currentColor"`, default: `"currentColor"`).
|
|
35
|
-
- **`weight`**: Icon style variant (`"Bold"`, `"Linear"`, `"Outline"`, `"BoldDuotone"`, `"LineDuotone"`, or `"Broken"`, default: `"Linear"`).
|
|
36
|
-
- **`mirrored`**: Flips the icon horizontally when `true` (default: `false`).
|
|
37
|
-
- **`alt`**: Accessibility title.
|
|
38
|
-
|
|
39
|
-
## Advanced Usage
|
|
40
|
-
|
|
41
|
-
### Global Configuration
|
|
42
|
-
|
|
43
|
-
Set default styles globally using `SolarProvider`:
|
|
37
|
+
Wrap your application root in `<SolarProvider>` to set default properties:
|
|
44
38
|
|
|
45
39
|
```vue
|
|
46
|
-
<template>
|
|
47
|
-
<SolarProvider :size="32" color="purple" weight="Linear">
|
|
48
|
-
<YourComponents />
|
|
49
|
-
</SolarProvider>
|
|
50
|
-
</template>
|
|
51
|
-
|
|
52
40
|
<script setup>
|
|
53
41
|
import { SolarProvider } from '@solar-icons/vue'
|
|
42
|
+
import { HomeIcon } from '@solar-icons/vue/linear'
|
|
54
43
|
</script>
|
|
55
|
-
```
|
|
56
44
|
|
|
57
|
-
### Vue Plugin
|
|
58
|
-
|
|
59
|
-
Alternatively, configure defaults globally via the Vue plugin:
|
|
60
|
-
|
|
61
|
-
```js
|
|
62
|
-
import { createApp } from 'vue'
|
|
63
|
-
import { SolarIconsPlugin } from '@solar-icons/vue'
|
|
64
|
-
|
|
65
|
-
const app = createApp(App)
|
|
66
|
-
app.use(SolarIconsPlugin, {
|
|
67
|
-
color: 'currentColor',
|
|
68
|
-
size: '24',
|
|
69
|
-
weight: 'Linear',
|
|
70
|
-
mirrored: false,
|
|
71
|
-
})
|
|
72
|
-
app.mount('#app')
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
### Composition API
|
|
76
|
-
|
|
77
|
-
Access and modify settings dynamically using `useSolar`:
|
|
78
|
-
|
|
79
|
-
```vue
|
|
80
45
|
<template>
|
|
81
|
-
<
|
|
82
|
-
<
|
|
83
|
-
|
|
84
|
-
</div>
|
|
46
|
+
<SolarProvider :size="24" color="currentColor" :strokeWidth="1.5">
|
|
47
|
+
<HomeIcon />
|
|
48
|
+
</SolarProvider>
|
|
85
49
|
</template>
|
|
86
|
-
|
|
87
|
-
<script setup>
|
|
88
|
-
import { ref } from 'vue'
|
|
89
|
-
import { ArrowUp, useSolar } from '@solar-icons/vue'
|
|
90
|
-
|
|
91
|
-
const { config, setSize } = useSolar()
|
|
92
|
-
const iconSize = ref(24)
|
|
93
|
-
|
|
94
|
-
const increaseSize = () => {
|
|
95
|
-
const newSize = parseInt(iconSize.value) + 4
|
|
96
|
-
iconSize.value = newSize
|
|
97
|
-
setSize(newSize)
|
|
98
|
-
}
|
|
99
|
-
</script>
|
|
100
50
|
```
|
|
101
51
|
|
|
102
|
-
##
|
|
52
|
+
## Documentation
|
|
103
53
|
|
|
104
|
-
|
|
105
|
-
- **Icons**: CC BY 4.0 by [480 Design](https://www.figma.com/community/file/1166831539721848736) (requires attribution)
|
|
54
|
+
For installation guides, API reference, and a searchable icon catalog, visit the [Vue Documentation](https://solar-icons.vercel.app/docs/v2/frameworks/vue).
|
|
106
55
|
|
|
107
|
-
|
|
56
|
+
## License
|
|
108
57
|
|
|
109
|
-
|
|
58
|
+
MIT License. Icons by 480 Design (CC BY 4.0).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//#region src/icons/broken/radial-blur.d.ts
|
|
2
2
|
/**
|
|
3
|
-
* 
|
|
4
4
|
*/
|
|
5
5
|
declare const RadialBlurIcon: (props: Record<string, unknown>, { attrs }: {
|
|
6
6
|
attrs: Record<string, unknown>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import e from"../../lib/IconBase.mjs";import{h as t}from"vue";const n=(n,{attrs:r})=>t(e,{...r,...n,iconName:`radial-blur-broken`},{default:()=>[t(`path`,{d:`M15.5 14.25C15.5 14.9404 14.9404 15.5 14.25 15.5C13.5596 15.5 13 14.9404 13 14.25C13 13.5596 13.5596 13 14.25 13C14.9404 13 15.5 13.5596 15.5 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M15.5 9.75C15.5 10.4404 14.9404 11 14.25 11C13.5596 11 13 10.4404 13 9.75C13 9.05964 13.5596 8.5 14.25 8.5C14.9404 8.5 15.5 9.05964 15.5 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`M11 14.25C11 14.9404 10.4404 15.5 9.75 15.5C9.05964 15.5 8.5 14.9404 8.5 14.25C8.5 13.5596 9.05964 13 9.75 13C10.4404 13 11 13.5596 11 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M11 9.75C11 10.4404 10.4404 11 9.75 11C9.05964 11 8.5 10.4404 8.5 9.75C8.5 9.05964 9.05964 8.5 9.75 8.5C10.4404 8.5 11 9.05964 11 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`
|
|
1
|
+
import e from"../../lib/IconBase.mjs";import{h as t}from"vue";const n=(n,{attrs:r})=>t(e,{...r,...n,iconName:`radial-blur-broken`},{default:()=>[t(`path`,{d:`M15.5 14.25C15.5 14.9404 14.9404 15.5 14.25 15.5C13.5596 15.5 13 14.9404 13 14.25C13 13.5596 13.5596 13 14.25 13C14.9404 13 15.5 13.5596 15.5 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M15.5 9.75C15.5 10.4404 14.9404 11 14.25 11C13.5596 11 13 10.4404 13 9.75C13 9.05964 13.5596 8.5 14.25 8.5C14.9404 8.5 15.5 9.05964 15.5 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`M11 14.25C11 14.9404 10.4404 15.5 9.75 15.5C9.05964 15.5 8.5 14.9404 8.5 14.25C8.5 13.5596 9.05964 13 9.75 13C10.4404 13 11 13.5596 11 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M11 9.75C11 10.4404 10.4404 11 9.75 11C9.05964 11 8.5 10.4404 8.5 9.75C8.5 9.05964 9.05964 8.5 9.75 8.5C10.4404 8.5 11 9.05964 11 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7`,stroke:`currentColor`,"stroke-linecap":`round`}),t(`path`,{d:`M9.75 5.75H9.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M5.75 9.75H5.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M5.75 14.25H5.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M9.75 18.25H9.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M14.25 18.25H14.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M18.25 14.25H18.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M18.25 9.75H18.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M14.25 5.75H14.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`})]});export{n as RadialBlurIcon};
|
|
@@ -9,7 +9,7 @@ import { DynamicIconProps } from "../../lib/types.mjs";
|
|
|
9
9
|
*
|
|
10
10
|
*  Linear
|
|
11
11
|
*
|
|
12
|
-
*  LineDuotone
|
|
13
13
|
*
|
|
14
14
|
*  Outline
|
|
15
15
|
*/
|
|
@@ -9,7 +9,7 @@ import { DynamicIconProps } from "../../lib/types.mjs";
|
|
|
9
9
|
*
|
|
10
10
|
*  Linear
|
|
11
11
|
*
|
|
12
|
-
*  LineDuotone
|
|
13
13
|
*
|
|
14
14
|
*  Outline
|
|
15
15
|
*/
|
|
@@ -5,11 +5,11 @@ import { DynamicIconProps } from "../../lib/types.mjs";
|
|
|
5
5
|
*
|
|
6
6
|
*  BoldDuotone
|
|
7
7
|
*
|
|
8
|
-
*  Broken
|
|
9
9
|
*
|
|
10
|
-
*  Linear
|
|
11
11
|
*
|
|
12
|
-
*  LineDuotone
|
|
13
13
|
*
|
|
14
14
|
*  Outline
|
|
15
15
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//#region src/icons/line-duotone/airbuds-left.d.ts
|
|
2
2
|
/**
|
|
3
|
-
* 
|
|
4
4
|
*/
|
|
5
5
|
declare const AirbudsLeftIcon: (props: Record<string, unknown>, { attrs }: {
|
|
6
6
|
attrs: Record<string, unknown>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import e from"../../lib/IconBase.mjs";import{h as t}from"vue";const n=(n,{attrs:r})=>t(e,{...r,...n,iconName:`airbuds-left-line-duotone`},{default:()=>[t(`path`,{d:`M8 5V8`,stroke:`currentColor`,"stroke-
|
|
1
|
+
import e from"../../lib/IconBase.mjs";import{h as t}from"vue";const n=(n,{attrs:r})=>t(e,{...r,...n,iconName:`airbuds-left-line-duotone`},{default:()=>[t(`path`,{d:`M8 5V8`,stroke:`currentColor`,"stroke-linecap":`round`,style:`color: var(--solar-secondary-color, currentColor); opacity: var(--solar-secondary-opacity, 0.5)`}),t(`circle`,{cx:`5.5`,cy:`5.5`,r:`5.5`,transform:`matrix(-1 0 0 1 21 11)`,stroke:`currentColor`,style:`color: var(--solar-secondary-color, currentColor); opacity: var(--solar-secondary-opacity, 0.5)`}),t(`path`,{d:`M14.0009 5.09961C15.96 5.49729 17.5032 7.04046 17.9009 8.99959`,stroke:`currentColor`,"stroke-linecap":`round`,style:`color: var(--solar-secondary-color, currentColor); opacity: var(--solar-secondary-opacity, 0.5)`}),t(`path`,{d:`M2 18.6667V19.5C2 20.8807 3.11929 22 4.5 22C5.88071 22 7 20.8807 7 19.5V18.6667M2 18.6667V7.625L2.00007 7.55936C2.01591 4.49563 4.49563 2.01591 7.55936 2.00007L7.625 2L7.66438 2.00004C9.50262 2.00954 10.9905 3.49738 11 5.33562L11 5.375V8C11 9.65685 9.65685 11 8 11C7.44772 11 7 11.4477 7 12V18.6667M2 18.6667H7`,stroke:`currentColor`}),t(`path`,{d:`M14 14V19H17`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`})]});export{n as AirbudsLeftIcon};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//#region src/icons/line-duotone/airbuds-right.d.ts
|
|
2
2
|
/**
|
|
3
|
-
* 
|
|
4
4
|
*/
|
|
5
5
|
declare const AirbudsRightIcon: (props: Record<string, unknown>, { attrs }: {
|
|
6
6
|
attrs: Record<string, unknown>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import e from"../../lib/IconBase.mjs";import{h as t}from"vue";const n=(n,{attrs:r})=>t(e,{...r,...n,iconName:`airbuds-right-line-duotone`},{default:()=>[t(`path`,{d:`M15 5V8`,stroke:`currentColor`,"stroke-
|
|
1
|
+
import e from"../../lib/IconBase.mjs";import{h as t}from"vue";const n=(n,{attrs:r})=>t(e,{...r,...n,iconName:`airbuds-right-line-duotone`},{default:()=>[t(`path`,{d:`M15 5V8`,stroke:`currentColor`,"stroke-linecap":`round`,style:`color: var(--solar-secondary-color, currentColor); opacity: var(--solar-secondary-opacity, 0.5)`}),t(`circle`,{cx:`7.5`,cy:`16.5`,r:`5.5`,stroke:`currentColor`,style:`color: var(--solar-secondary-color, currentColor); opacity: var(--solar-secondary-opacity, 0.5)`}),t(`path`,{d:`M9.00008 5.09961C7.04095 5.49729 5.49778 7.04046 5.1001 8.99959`,stroke:`currentColor`,"stroke-linecap":`round`,style:`color: var(--solar-secondary-color, currentColor); opacity: var(--solar-secondary-opacity, 0.5)`}),t(`path`,{d:`M16 18.6667V12C16 11.4477 15.5523 11 15 11C13.3431 11 12 9.65685 12 8V5.375L12 5.33562C12.0095 3.49738 13.4974 2.00954 15.3356 2.00004L15.375 2L15.4406 2.00007C18.5044 2.01591 20.9841 4.49563 20.9999 7.55936L21 7.625V18.6667M16 18.6667V19.5C16 19.6393 16 19.7089 16.003 19.7678C16.0634 20.973 17.027 21.9366 18.2322 21.997C18.2911 22 18.3607 22 18.5 22C18.6393 22 18.7089 22 18.7678 21.997C19.973 21.9366 20.9366 20.973 20.997 19.7678C21 19.7089 21 19.6393 21 19.5V18.6667M16 18.6667H21`,stroke:`currentColor`}),t(`path`,{d:`M6 19V14H7.5C8.32843 14 9 14.5596 9 15.25C9 15.9404 8.32843 16.5 7.5 16.5M6 14V16.5H7.5M7.5 16.5L9 19`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`})]});export{n as AirbudsRightIcon};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//#region src/icons/line-duotone/radial-blur.d.ts
|
|
2
2
|
/**
|
|
3
|
-
* 
|
|
4
4
|
*/
|
|
5
5
|
declare const RadialBlurIcon: (props: Record<string, unknown>, { attrs }: {
|
|
6
6
|
attrs: Record<string, unknown>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import e from"../../lib/IconBase.mjs";import{h as t}from"vue";const n=(n,{attrs:r})=>t(e,{...r,...n,iconName:`radial-blur-line-duotone`},{default:()=>[t(`path`,{d:`M3.33995 16.9997C6.10137 21.7826 12.2173 23.4214 17.0002 20.66C18.9498 19.5344 20.377 17.8514 21.1967 15.9286C22.388 13.1341 22.2963 9.83304 20.6605 6.99972C19.0246 4.1664 16.2117 2.43642 13.196 2.07088C11.1209 1.81935 8.94981 2.21386 7.00021 3.33946C2.21728 6.10089 0.578527 12.2168 3.33995 16.9997Z`,stroke:`currentColor`,style:`color: var(--solar-secondary-color, currentColor); opacity: var(--solar-secondary-opacity, 0.5)`}),t(`path`,{d:`M15.5 14.25C15.5 14.9404 14.9404 15.5 14.25 15.5C13.5596 15.5 13 14.9404 13 14.25C13 13.5596 13.5596 13 14.25 13C14.9404 13 15.5 13.5596 15.5 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M15.5 9.75C15.5 10.4404 14.9404 11 14.25 11C13.5596 11 13 10.4404 13 9.75C13 9.05964 13.5596 8.5 14.25 8.5C14.9404 8.5 15.5 9.05964 15.5 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`M11 14.25C11 14.9404 10.4404 15.5 9.75 15.5C9.05964 15.5 8.5 14.9404 8.5 14.25C8.5 13.5596 9.05964 13 9.75 13C10.4404 13 11 13.5596 11 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M11 9.75C11 10.4404 10.4404 11 9.75 11C9.05964 11 8.5 10.4404 8.5 9.75C8.5 9.05964 9.05964 8.5 9.75 8.5C10.4404 8.5 11 9.05964 11 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`
|
|
1
|
+
import e from"../../lib/IconBase.mjs";import{h as t}from"vue";const n=(n,{attrs:r})=>t(e,{...r,...n,iconName:`radial-blur-line-duotone`},{default:()=>[t(`path`,{d:`M3.33995 16.9997C6.10137 21.7826 12.2173 23.4214 17.0002 20.66C18.9498 19.5344 20.377 17.8514 21.1967 15.9286C22.388 13.1341 22.2963 9.83304 20.6605 6.99972C19.0246 4.1664 16.2117 2.43642 13.196 2.07088C11.1209 1.81935 8.94981 2.21386 7.00021 3.33946C2.21728 6.10089 0.578527 12.2168 3.33995 16.9997Z`,stroke:`currentColor`,style:`color: var(--solar-secondary-color, currentColor); opacity: var(--solar-secondary-opacity, 0.5)`}),t(`path`,{d:`M15.5 14.25C15.5 14.9404 14.9404 15.5 14.25 15.5C13.5596 15.5 13 14.9404 13 14.25C13 13.5596 13.5596 13 14.25 13C14.9404 13 15.5 13.5596 15.5 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M15.5 9.75C15.5 10.4404 14.9404 11 14.25 11C13.5596 11 13 10.4404 13 9.75C13 9.05964 13.5596 8.5 14.25 8.5C14.9404 8.5 15.5 9.05964 15.5 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`M11 14.25C11 14.9404 10.4404 15.5 9.75 15.5C9.05964 15.5 8.5 14.9404 8.5 14.25C8.5 13.5596 9.05964 13 9.75 13C10.4404 13 11 13.5596 11 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M11 9.75C11 10.4404 10.4404 11 9.75 11C9.05964 11 8.5 10.4404 8.5 9.75C8.5 9.05964 9.05964 8.5 9.75 8.5C10.4404 8.5 11 9.05964 11 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`M9.75 5.75H9.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M5.75 9.75H5.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M5.75 14.25H5.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M9.75 18.25H9.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M14.25 18.25H14.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M18.25 14.25H18.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M18.25 9.75H18.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M14.25 5.75H14.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`})]});export{n as RadialBlurIcon};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//#region src/icons/linear/radial-blur.d.ts
|
|
2
2
|
/**
|
|
3
|
-
* 
|
|
4
4
|
*/
|
|
5
5
|
declare const RadialBlurIcon: (props: Record<string, unknown>, { attrs }: {
|
|
6
6
|
attrs: Record<string, unknown>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import e from"../../lib/IconBase.mjs";import{h as t}from"vue";const n=(n,{attrs:r})=>t(e,{...r,...n,iconName:`radial-blur-linear`},{default:()=>[t(`path`,{d:`M3.33995 16.9997C6.10137 21.7826 12.2173 23.4214 17.0002 20.66C18.9498 19.5344 20.377 17.8514 21.1967 15.9286C22.388 13.1341 22.2963 9.83304 20.6605 6.99972C19.0246 4.1664 16.2117 2.43642 13.196 2.07088C11.1209 1.81935 8.94981 2.21386 7.00021 3.33946C2.21728 6.10089 0.578527 12.2168 3.33995 16.9997Z`,stroke:`currentColor`}),t(`path`,{d:`M15.5 14.25C15.5 14.9404 14.9404 15.5 14.25 15.5C13.5596 15.5 13 14.9404 13 14.25C13 13.5596 13.5596 13 14.25 13C14.9404 13 15.5 13.5596 15.5 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M15.5 9.75C15.5 10.4404 14.9404 11 14.25 11C13.5596 11 13 10.4404 13 9.75C13 9.05964 13.5596 8.5 14.25 8.5C14.9404 8.5 15.5 9.05964 15.5 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`M11 14.25C11 14.9404 10.4404 15.5 9.75 15.5C9.05964 15.5 8.5 14.9404 8.5 14.25C8.5 13.5596 9.05964 13 9.75 13C10.4404 13 11 13.5596 11 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M11 9.75C11 10.4404 10.4404 11 9.75 11C9.05964 11 8.5 10.4404 8.5 9.75C8.5 9.05964 9.05964 8.5 9.75 8.5C10.4404 8.5 11 9.05964 11 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`
|
|
1
|
+
import e from"../../lib/IconBase.mjs";import{h as t}from"vue";const n=(n,{attrs:r})=>t(e,{...r,...n,iconName:`radial-blur-linear`},{default:()=>[t(`path`,{d:`M3.33995 16.9997C6.10137 21.7826 12.2173 23.4214 17.0002 20.66C18.9498 19.5344 20.377 17.8514 21.1967 15.9286C22.388 13.1341 22.2963 9.83304 20.6605 6.99972C19.0246 4.1664 16.2117 2.43642 13.196 2.07088C11.1209 1.81935 8.94981 2.21386 7.00021 3.33946C2.21728 6.10089 0.578527 12.2168 3.33995 16.9997Z`,stroke:`currentColor`}),t(`path`,{d:`M15.5 14.25C15.5 14.9404 14.9404 15.5 14.25 15.5C13.5596 15.5 13 14.9404 13 14.25C13 13.5596 13.5596 13 14.25 13C14.9404 13 15.5 13.5596 15.5 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M15.5 9.75C15.5 10.4404 14.9404 11 14.25 11C13.5596 11 13 10.4404 13 9.75C13 9.05964 13.5596 8.5 14.25 8.5C14.9404 8.5 15.5 9.05964 15.5 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`M11 14.25C11 14.9404 10.4404 15.5 9.75 15.5C9.05964 15.5 8.5 14.9404 8.5 14.25C8.5 13.5596 9.05964 13 9.75 13C10.4404 13 11 13.5596 11 14.25Z`,stroke:`currentColor`}),t(`path`,{d:`M11 9.75C11 10.4404 10.4404 11 9.75 11C9.05964 11 8.5 10.4404 8.5 9.75C8.5 9.05964 9.05964 8.5 9.75 8.5C10.4404 8.5 11 9.05964 11 9.75Z`,stroke:`currentColor`}),t(`path`,{d:`M9.75 5.75H9.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M5.75 9.75H5.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M5.75 14.25H5.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M9.75 18.25H9.7501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M14.25 18.25H14.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M18.25 14.25H18.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M18.25 9.75H18.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`}),t(`path`,{d:`M14.25 5.75H14.2501`,stroke:`currentColor`,"stroke-linecap":`round`,"stroke-linejoin":`round`})]});export{n as RadialBlurIcon};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solar-icons/vue",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"vitest": "^4.1.10",
|
|
88
88
|
"vue": "^3.5.39",
|
|
89
89
|
"vue-tsc": "3.3.7",
|
|
90
|
-
"@solar-icons/core": "
|
|
90
|
+
"@solar-icons/core": "2.0.0-beta.1"
|
|
91
91
|
},
|
|
92
92
|
"license": "MIT",
|
|
93
93
|
"scripts": {
|