@zleap-ai/icons 0.0.118 → 0.0.120
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/dist/cjs/index.js +4 -24
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +0 -15
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +0 -10
- package/dist/types/index.d.ts.map +1 -1
- package/icons.json +2 -57
- package/package.json +1 -1
- package/react-native/icons/IconChengGong2.tsx +53 -0
- package/react-native/icons/IconChongShi3.tsx +53 -0
- package/react-native/icons/IconShiBai2.tsx +53 -0
- package/react-native/icons/IconTongBuZhong2.tsx +53 -0
- package/react-native/index.ts +0 -15
- package/dist/cjs/icons/IconChengGong1.js +0 -17
- package/dist/cjs/icons/IconChengGong1.js.map +0 -1
- package/dist/cjs/icons/IconChongShi2.js +0 -17
- package/dist/cjs/icons/IconChongShi2.js.map +0 -1
- package/dist/cjs/icons/IconShaiXuan2.js +0 -17
- package/dist/cjs/icons/IconShaiXuan2.js.map +0 -1
- package/dist/cjs/icons/IconShiBai1.js +0 -17
- package/dist/cjs/icons/IconShiBai1.js.map +0 -1
- package/dist/cjs/icons/IconTongBuZhong1.js +0 -17
- package/dist/cjs/icons/IconTongBuZhong1.js.map +0 -1
- package/dist/esm/icons/IconChengGong1.js +0 -14
- package/dist/esm/icons/IconChengGong1.js.map +0 -1
- package/dist/esm/icons/IconChongShi2.js +0 -14
- package/dist/esm/icons/IconChongShi2.js.map +0 -1
- package/dist/esm/icons/IconShaiXuan2.js +0 -14
- package/dist/esm/icons/IconShaiXuan2.js.map +0 -1
- package/dist/esm/icons/IconShiBai1.js +0 -14
- package/dist/esm/icons/IconShiBai1.js.map +0 -1
- package/dist/esm/icons/IconTongBuZhong1.js +0 -14
- package/dist/esm/icons/IconTongBuZhong1.js.map +0 -1
- package/dist/types/icons/IconChengGong1.d.ts +0 -17
- package/dist/types/icons/IconChengGong1.d.ts.map +0 -1
- package/dist/types/icons/IconChongShi2.d.ts +0 -17
- package/dist/types/icons/IconChongShi2.d.ts.map +0 -1
- package/dist/types/icons/IconShaiXuan2.d.ts +0 -17
- package/dist/types/icons/IconShaiXuan2.d.ts.map +0 -1
- package/dist/types/icons/IconShiBai1.d.ts +0 -17
- package/dist/types/icons/IconShiBai1.d.ts.map +0 -1
- package/dist/types/icons/IconTongBuZhong1.d.ts +0 -17
- package/dist/types/icons/IconTongBuZhong1.d.ts.map +0 -1
- package/svg//345/220/214/346/255/245/344/270/2551.svg +0 -1
- package/svg//345/244/261/350/264/2451.svg +0 -1
- package/svg//346/210/220/345/212/2371.svg +0 -1
- package/svg//347/255/233/351/200/2112.svg +0 -1
- package/svg//351/207/215/350/257/2252.svg +0 -1
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import React, { forwardRef, useMemo } from 'react'
|
|
2
|
+
import type { ComponentProps } from 'react'
|
|
3
|
+
import { SvgXml } from 'react-native-svg'
|
|
4
|
+
|
|
5
|
+
export interface IconChengGong2Props extends Omit<ComponentProps<typeof SvgXml>, 'xml' | 'width' | 'height'> {
|
|
6
|
+
size?: number | string
|
|
7
|
+
color?: string
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const IconChengGong2 = forwardRef<unknown, IconChengGong2Props>(
|
|
11
|
+
({ size = 24, color, ...props }, ref) => {
|
|
12
|
+
const baseXml = useMemo(
|
|
13
|
+
() => `<svg fill="none" viewBox="0 0 24 24"><path stroke="#009966" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.478 2 12s4.477 10 10 10"/><path stroke="#009966" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 12 2 2 4-4"/></svg>`,
|
|
14
|
+
[],
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
const xml = useMemo(() => {
|
|
18
|
+
if (!color) return baseXml
|
|
19
|
+
return baseXml.replace(
|
|
20
|
+
/(fill|stroke)="([^"]+)"/gi,
|
|
21
|
+
(_match, attr, value) => {
|
|
22
|
+
const normalized = String(value).toLowerCase().replace(/\s/g, '')
|
|
23
|
+
if (
|
|
24
|
+
normalized === 'none' ||
|
|
25
|
+
normalized === 'currentcolor' ||
|
|
26
|
+
normalized === 'white' ||
|
|
27
|
+
normalized === '#fff' ||
|
|
28
|
+
normalized === '#ffffff' ||
|
|
29
|
+
normalized.startsWith('url(')
|
|
30
|
+
) {
|
|
31
|
+
return `${attr}="${value}"`
|
|
32
|
+
}
|
|
33
|
+
return `${attr}="${color}"`
|
|
34
|
+
},
|
|
35
|
+
)
|
|
36
|
+
}, [baseXml, color])
|
|
37
|
+
|
|
38
|
+
return (
|
|
39
|
+
<SvgXml
|
|
40
|
+
ref={ref as never}
|
|
41
|
+
xml={xml}
|
|
42
|
+
width={size}
|
|
43
|
+
height={size}
|
|
44
|
+
viewBox="0 0 24 24"
|
|
45
|
+
{...props}
|
|
46
|
+
/>
|
|
47
|
+
)
|
|
48
|
+
},
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
IconChengGong2.displayName = 'IconChengGong2'
|
|
52
|
+
|
|
53
|
+
export default IconChengGong2
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import React, { forwardRef, useMemo } from 'react'
|
|
2
|
+
import type { ComponentProps } from 'react'
|
|
3
|
+
import { SvgXml } from 'react-native-svg'
|
|
4
|
+
|
|
5
|
+
export interface IconChongShi3Props extends Omit<ComponentProps<typeof SvgXml>, 'xml' | 'width' | 'height'> {
|
|
6
|
+
size?: number | string
|
|
7
|
+
color?: string
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const IconChongShi3 = forwardRef<unknown, IconChongShi3Props>(
|
|
11
|
+
({ size = 24, color, ...props }, ref) => {
|
|
12
|
+
const baseXml = useMemo(
|
|
13
|
+
() => `<svg fill="none" viewBox="0 0 24 24"><path stroke="#FF8A00" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M21 4v8"/><path stroke="#FF8A00" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M3 12v8"/><path stroke="#FF8A00" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M21 12A9 9 0 0 0 5.524 5.75M3 12a9 9 0 0 0 15.25 6.476"/></svg>`,
|
|
14
|
+
[],
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
const xml = useMemo(() => {
|
|
18
|
+
if (!color) return baseXml
|
|
19
|
+
return baseXml.replace(
|
|
20
|
+
/(fill|stroke)="([^"]+)"/gi,
|
|
21
|
+
(_match, attr, value) => {
|
|
22
|
+
const normalized = String(value).toLowerCase().replace(/\s/g, '')
|
|
23
|
+
if (
|
|
24
|
+
normalized === 'none' ||
|
|
25
|
+
normalized === 'currentcolor' ||
|
|
26
|
+
normalized === 'white' ||
|
|
27
|
+
normalized === '#fff' ||
|
|
28
|
+
normalized === '#ffffff' ||
|
|
29
|
+
normalized.startsWith('url(')
|
|
30
|
+
) {
|
|
31
|
+
return `${attr}="${value}"`
|
|
32
|
+
}
|
|
33
|
+
return `${attr}="${color}"`
|
|
34
|
+
},
|
|
35
|
+
)
|
|
36
|
+
}, [baseXml, color])
|
|
37
|
+
|
|
38
|
+
return (
|
|
39
|
+
<SvgXml
|
|
40
|
+
ref={ref as never}
|
|
41
|
+
xml={xml}
|
|
42
|
+
width={size}
|
|
43
|
+
height={size}
|
|
44
|
+
viewBox="0 0 24 24"
|
|
45
|
+
{...props}
|
|
46
|
+
/>
|
|
47
|
+
)
|
|
48
|
+
},
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
IconChongShi3.displayName = 'IconChongShi3'
|
|
52
|
+
|
|
53
|
+
export default IconChongShi3
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import React, { forwardRef, useMemo } from 'react'
|
|
2
|
+
import type { ComponentProps } from 'react'
|
|
3
|
+
import { SvgXml } from 'react-native-svg'
|
|
4
|
+
|
|
5
|
+
export interface IconShiBai2Props extends Omit<ComponentProps<typeof SvgXml>, 'xml' | 'width' | 'height'> {
|
|
6
|
+
size?: number | string
|
|
7
|
+
color?: string
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const IconShiBai2 = forwardRef<unknown, IconShiBai2Props>(
|
|
11
|
+
({ size = 24, color, ...props }, ref) => {
|
|
12
|
+
const baseXml = useMemo(
|
|
13
|
+
() => `<svg fill="none" viewBox="0 0 24 24"><path stroke="#E7000B" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.478 2 12s4.477 10 10 10"/><path stroke="#E7000B" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4"/><path stroke="#E7000B" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 16h.01"/></svg>`,
|
|
14
|
+
[],
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
const xml = useMemo(() => {
|
|
18
|
+
if (!color) return baseXml
|
|
19
|
+
return baseXml.replace(
|
|
20
|
+
/(fill|stroke)="([^"]+)"/gi,
|
|
21
|
+
(_match, attr, value) => {
|
|
22
|
+
const normalized = String(value).toLowerCase().replace(/\s/g, '')
|
|
23
|
+
if (
|
|
24
|
+
normalized === 'none' ||
|
|
25
|
+
normalized === 'currentcolor' ||
|
|
26
|
+
normalized === 'white' ||
|
|
27
|
+
normalized === '#fff' ||
|
|
28
|
+
normalized === '#ffffff' ||
|
|
29
|
+
normalized.startsWith('url(')
|
|
30
|
+
) {
|
|
31
|
+
return `${attr}="${value}"`
|
|
32
|
+
}
|
|
33
|
+
return `${attr}="${color}"`
|
|
34
|
+
},
|
|
35
|
+
)
|
|
36
|
+
}, [baseXml, color])
|
|
37
|
+
|
|
38
|
+
return (
|
|
39
|
+
<SvgXml
|
|
40
|
+
ref={ref as never}
|
|
41
|
+
xml={xml}
|
|
42
|
+
width={size}
|
|
43
|
+
height={size}
|
|
44
|
+
viewBox="0 0 24 24"
|
|
45
|
+
{...props}
|
|
46
|
+
/>
|
|
47
|
+
)
|
|
48
|
+
},
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
IconShiBai2.displayName = 'IconShiBai2'
|
|
52
|
+
|
|
53
|
+
export default IconShiBai2
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import React, { forwardRef, useMemo } from 'react'
|
|
2
|
+
import type { ComponentProps } from 'react'
|
|
3
|
+
import { SvgXml } from 'react-native-svg'
|
|
4
|
+
|
|
5
|
+
export interface IconTongBuZhong2Props extends Omit<ComponentProps<typeof SvgXml>, 'xml' | 'width' | 'height'> {
|
|
6
|
+
size?: number | string
|
|
7
|
+
color?: string
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const IconTongBuZhong2 = forwardRef<unknown, IconTongBuZhong2Props>(
|
|
11
|
+
({ size = 24, color, ...props }, ref) => {
|
|
12
|
+
const baseXml = useMemo(
|
|
13
|
+
() => `<svg fill="none" viewBox="0 0 24 24"><path stroke="#A1A1AA" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12a9 9 0 1 1 6.22 8.56"/></svg>`,
|
|
14
|
+
[],
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
const xml = useMemo(() => {
|
|
18
|
+
if (!color) return baseXml
|
|
19
|
+
return baseXml.replace(
|
|
20
|
+
/(fill|stroke)="([^"]+)"/gi,
|
|
21
|
+
(_match, attr, value) => {
|
|
22
|
+
const normalized = String(value).toLowerCase().replace(/\s/g, '')
|
|
23
|
+
if (
|
|
24
|
+
normalized === 'none' ||
|
|
25
|
+
normalized === 'currentcolor' ||
|
|
26
|
+
normalized === 'white' ||
|
|
27
|
+
normalized === '#fff' ||
|
|
28
|
+
normalized === '#ffffff' ||
|
|
29
|
+
normalized.startsWith('url(')
|
|
30
|
+
) {
|
|
31
|
+
return `${attr}="${value}"`
|
|
32
|
+
}
|
|
33
|
+
return `${attr}="${color}"`
|
|
34
|
+
},
|
|
35
|
+
)
|
|
36
|
+
}, [baseXml, color])
|
|
37
|
+
|
|
38
|
+
return (
|
|
39
|
+
<SvgXml
|
|
40
|
+
ref={ref as never}
|
|
41
|
+
xml={xml}
|
|
42
|
+
width={size}
|
|
43
|
+
height={size}
|
|
44
|
+
viewBox="0 0 24 24"
|
|
45
|
+
{...props}
|
|
46
|
+
/>
|
|
47
|
+
)
|
|
48
|
+
},
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
IconTongBuZhong2.displayName = 'IconTongBuZhong2'
|
|
52
|
+
|
|
53
|
+
export default IconTongBuZhong2
|
package/react-native/index.ts
CHANGED
|
@@ -14,11 +14,9 @@ import { IconCaiJing } from './icons/IconCaiJing'
|
|
|
14
14
|
import { IconCaiJing1 } from './icons/IconCaiJing1'
|
|
15
15
|
import { IconCheck } from './icons/IconCheck'
|
|
16
16
|
import { IconChengGong } from './icons/IconChengGong'
|
|
17
|
-
import { IconChengGong1 } from './icons/IconChengGong1'
|
|
18
17
|
import { IconChongBo } from './icons/IconChongBo'
|
|
19
18
|
import { IconChongShi } from './icons/IconChongShi'
|
|
20
19
|
import { IconChongShi1 } from './icons/IconChongShi1'
|
|
21
|
-
import { IconChongShi2 } from './icons/IconChongShi2'
|
|
22
20
|
import { IconChongXin } from './icons/IconChongXin'
|
|
23
21
|
import { IconChuanRu } from './icons/IconChuanRu'
|
|
24
22
|
import { IconDaiShenHe } from './icons/IconDaiShenHe'
|
|
@@ -103,7 +101,6 @@ import { IconQingChuYiDu } from './icons/IconQingChuYiDu'
|
|
|
103
101
|
import { IconSearch } from './icons/IconSearch'
|
|
104
102
|
import { IconShaiXuan } from './icons/IconShaiXuan'
|
|
105
103
|
import { IconShaiXuan1 } from './icons/IconShaiXuan1'
|
|
106
|
-
import { IconShaiXuan2 } from './icons/IconShaiXuan2'
|
|
107
104
|
import { IconShanChu } from './icons/IconShanChu'
|
|
108
105
|
import { IconShanChu1 } from './icons/IconShanChu1'
|
|
109
106
|
import { IconShanChuDELETE } from './icons/IconShanChuDELETE'
|
|
@@ -114,7 +111,6 @@ import { IconShenQingChengGong } from './icons/IconShenQingChengGong'
|
|
|
114
111
|
import { IconSheZhi } from './icons/IconSheZhi'
|
|
115
112
|
import { IconSheZhi1 } from './icons/IconSheZhi1'
|
|
116
113
|
import { IconShiBai } from './icons/IconShiBai'
|
|
117
|
-
import { IconShiBai1 } from './icons/IconShiBai1'
|
|
118
114
|
import { IconShouCang } from './icons/IconShouCang'
|
|
119
115
|
import { IconShouCang1 } from './icons/IconShouCang1'
|
|
120
116
|
import { IconShouYe } from './icons/IconShouYe'
|
|
@@ -130,7 +126,6 @@ import { IconSuoDing } from './icons/IconSuoDing'
|
|
|
130
126
|
import { IconTanSuo } from './icons/IconTanSuo'
|
|
131
127
|
import { IconTiYu } from './icons/IconTiYu'
|
|
132
128
|
import { IconTongBuZhong } from './icons/IconTongBuZhong'
|
|
133
|
-
import { IconTongBuZhong1 } from './icons/IconTongBuZhong1'
|
|
134
129
|
import { IconTongXunLuXi } from './icons/IconTongXunLuXi'
|
|
135
130
|
import { IconTongZhi } from './icons/IconTongZhi'
|
|
136
131
|
import { IconTongZhi1 } from './icons/IconTongZhi1'
|
|
@@ -194,11 +189,9 @@ export { IconCaiJing, type IconCaiJingProps } from './icons/IconCaiJing'
|
|
|
194
189
|
export { IconCaiJing1, type IconCaiJing1Props } from './icons/IconCaiJing1'
|
|
195
190
|
export { IconCheck, type IconCheckProps } from './icons/IconCheck'
|
|
196
191
|
export { IconChengGong, type IconChengGongProps } from './icons/IconChengGong'
|
|
197
|
-
export { IconChengGong1, type IconChengGong1Props } from './icons/IconChengGong1'
|
|
198
192
|
export { IconChongBo, type IconChongBoProps } from './icons/IconChongBo'
|
|
199
193
|
export { IconChongShi, type IconChongShiProps } from './icons/IconChongShi'
|
|
200
194
|
export { IconChongShi1, type IconChongShi1Props } from './icons/IconChongShi1'
|
|
201
|
-
export { IconChongShi2, type IconChongShi2Props } from './icons/IconChongShi2'
|
|
202
195
|
export { IconChongXin, type IconChongXinProps } from './icons/IconChongXin'
|
|
203
196
|
export { IconChuanRu, type IconChuanRuProps } from './icons/IconChuanRu'
|
|
204
197
|
export { IconDaiShenHe, type IconDaiShenHeProps } from './icons/IconDaiShenHe'
|
|
@@ -283,7 +276,6 @@ export { IconQingChuYiDu, type IconQingChuYiDuProps } from './icons/IconQingChuY
|
|
|
283
276
|
export { IconSearch, type IconSearchProps } from './icons/IconSearch'
|
|
284
277
|
export { IconShaiXuan, type IconShaiXuanProps } from './icons/IconShaiXuan'
|
|
285
278
|
export { IconShaiXuan1, type IconShaiXuan1Props } from './icons/IconShaiXuan1'
|
|
286
|
-
export { IconShaiXuan2, type IconShaiXuan2Props } from './icons/IconShaiXuan2'
|
|
287
279
|
export { IconShanChu, type IconShanChuProps } from './icons/IconShanChu'
|
|
288
280
|
export { IconShanChu1, type IconShanChu1Props } from './icons/IconShanChu1'
|
|
289
281
|
export { IconShanChuDELETE, type IconShanChuDELETEProps } from './icons/IconShanChuDELETE'
|
|
@@ -294,7 +286,6 @@ export { IconShenQingChengGong, type IconShenQingChengGongProps } from './icons/
|
|
|
294
286
|
export { IconSheZhi, type IconSheZhiProps } from './icons/IconSheZhi'
|
|
295
287
|
export { IconSheZhi1, type IconSheZhi1Props } from './icons/IconSheZhi1'
|
|
296
288
|
export { IconShiBai, type IconShiBaiProps } from './icons/IconShiBai'
|
|
297
|
-
export { IconShiBai1, type IconShiBai1Props } from './icons/IconShiBai1'
|
|
298
289
|
export { IconShouCang, type IconShouCangProps } from './icons/IconShouCang'
|
|
299
290
|
export { IconShouCang1, type IconShouCang1Props } from './icons/IconShouCang1'
|
|
300
291
|
export { IconShouYe, type IconShouYeProps } from './icons/IconShouYe'
|
|
@@ -310,7 +301,6 @@ export { IconSuoDing, type IconSuoDingProps } from './icons/IconSuoDing'
|
|
|
310
301
|
export { IconTanSuo, type IconTanSuoProps } from './icons/IconTanSuo'
|
|
311
302
|
export { IconTiYu, type IconTiYuProps } from './icons/IconTiYu'
|
|
312
303
|
export { IconTongBuZhong, type IconTongBuZhongProps } from './icons/IconTongBuZhong'
|
|
313
|
-
export { IconTongBuZhong1, type IconTongBuZhong1Props } from './icons/IconTongBuZhong1'
|
|
314
304
|
export { IconTongXunLuXi, type IconTongXunLuXiProps } from './icons/IconTongXunLuXi'
|
|
315
305
|
export { IconTongZhi, type IconTongZhiProps } from './icons/IconTongZhi'
|
|
316
306
|
export { IconTongZhi1, type IconTongZhi1Props } from './icons/IconTongZhi1'
|
|
@@ -375,11 +365,9 @@ export const allIcons = {
|
|
|
375
365
|
IconCaiJing1,
|
|
376
366
|
IconCheck,
|
|
377
367
|
IconChengGong,
|
|
378
|
-
IconChengGong1,
|
|
379
368
|
IconChongBo,
|
|
380
369
|
IconChongShi,
|
|
381
370
|
IconChongShi1,
|
|
382
|
-
IconChongShi2,
|
|
383
371
|
IconChongXin,
|
|
384
372
|
IconChuanRu,
|
|
385
373
|
IconDaiShenHe,
|
|
@@ -464,7 +452,6 @@ export const allIcons = {
|
|
|
464
452
|
IconSearch,
|
|
465
453
|
IconShaiXuan,
|
|
466
454
|
IconShaiXuan1,
|
|
467
|
-
IconShaiXuan2,
|
|
468
455
|
IconShanChu,
|
|
469
456
|
IconShanChu1,
|
|
470
457
|
IconShanChuDELETE,
|
|
@@ -475,7 +462,6 @@ export const allIcons = {
|
|
|
475
462
|
IconSheZhi,
|
|
476
463
|
IconSheZhi1,
|
|
477
464
|
IconShiBai,
|
|
478
|
-
IconShiBai1,
|
|
479
465
|
IconShouCang,
|
|
480
466
|
IconShouCang1,
|
|
481
467
|
IconShouYe,
|
|
@@ -491,7 +477,6 @@ export const allIcons = {
|
|
|
491
477
|
IconTanSuo,
|
|
492
478
|
IconTiYu,
|
|
493
479
|
IconTongBuZhong,
|
|
494
|
-
IconTongBuZhong1,
|
|
495
480
|
IconTongXunLuXi,
|
|
496
481
|
IconTongZhi,
|
|
497
482
|
IconTongZhi1,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IconChengGong1 = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const react_1 = require("react");
|
|
6
|
-
/**
|
|
7
|
-
* IconChengGong1 icon component
|
|
8
|
-
*
|
|
9
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
10
|
-
* @param ref - Forwarded ref to the SVG element
|
|
11
|
-
*/
|
|
12
|
-
exports.IconChengGong1 = (0, react_1.forwardRef)(({ size = 24, color, className, style, ...props }, ref) => {
|
|
13
|
-
return ((0, jsx_runtime_1.jsxs)("svg", { ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", className: className, style: { ...(color ? { color } : {}), ...style }, ...props, children: [(0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.478 2 12s4.477 10 10 10" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "m9 12 2 2 4-4" })] }));
|
|
14
|
-
});
|
|
15
|
-
exports.IconChengGong1.displayName = 'IconChengGong1';
|
|
16
|
-
exports.default = exports.IconChengGong1;
|
|
17
|
-
//# sourceMappingURL=IconChengGong1.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconChengGong1.js","sourceRoot":"","sources":["../../../src/icons/IconChengGong1.tsx"],"names":[],"mappings":";;;;AAAA,iCAA0C;AAU1C;;;;;GAKG;AACU,QAAA,cAAc,GAAG,IAAA,kBAAU,EACtC,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IACxD,OAAO,CACL,iCACE,GAAG,EAAE,GAAG,EACR,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,EAAE,KAC5C,KAAK,aAET,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,yEAAyE,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,eAAe,GAAE,IAC9Q,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,sBAAc,CAAC,WAAW,GAAG,gBAAgB,CAAC;AAE9C,kBAAe,sBAAc,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IconChongShi2 = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const react_1 = require("react");
|
|
6
|
-
/**
|
|
7
|
-
* IconChongShi2 icon component
|
|
8
|
-
*
|
|
9
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
10
|
-
* @param ref - Forwarded ref to the SVG element
|
|
11
|
-
*/
|
|
12
|
-
exports.IconChongShi2 = (0, react_1.forwardRef)(({ size = 24, color, className, style, ...props }, ref) => {
|
|
13
|
-
return ((0, jsx_runtime_1.jsxs)("svg", { ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", className: className, style: { ...(color ? { color } : {}), ...style }, ...props, children: [(0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M21 4v8" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M3 12v8" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M21 12A9 9 0 0 0 5.524 5.75M3 12a9 9 0 0 0 15.25 6.476" })] }));
|
|
14
|
-
});
|
|
15
|
-
exports.IconChongShi2.displayName = 'IconChongShi2';
|
|
16
|
-
exports.default = exports.IconChongShi2;
|
|
17
|
-
//# sourceMappingURL=IconChongShi2.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconChongShi2.js","sourceRoot":"","sources":["../../../src/icons/IconChongShi2.tsx"],"names":[],"mappings":";;;;AAAA,iCAA0C;AAU1C;;;;;GAKG;AACU,QAAA,aAAa,GAAG,IAAA,kBAAU,EACrC,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IACxD,OAAO,CACL,iCACE,GAAG,EAAE,GAAG,EACR,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,EAAE,KAC5C,KAAK,aAET,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,KAAK,EAAC,CAAC,EAAC,SAAS,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,KAAK,EAAC,CAAC,EAAC,SAAS,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,KAAK,EAAC,CAAC,EAAC,wDAAwD,GAAE,IACnW,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,qBAAa,CAAC,WAAW,GAAG,eAAe,CAAC;AAE5C,kBAAe,qBAAa,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IconShaiXuan2 = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const react_1 = require("react");
|
|
6
|
-
/**
|
|
7
|
-
* IconShaiXuan2 icon component
|
|
8
|
-
*
|
|
9
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
10
|
-
* @param ref - Forwarded ref to the SVG element
|
|
11
|
-
*/
|
|
12
|
-
exports.IconShaiXuan2 = (0, react_1.forwardRef)(({ size = 24, color, className, style, ...props }, ref) => {
|
|
13
|
-
return ((0, jsx_runtime_1.jsxs)("svg", { ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", className: className, style: { ...(color ? { color } : {}), ...style }, ...props, children: [(0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M19.565 5.275h-5.883" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M10.319 5.275H4.436" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M19.565 12H12" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M8.638 12H4.436" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M19.564 18.725H15.36" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M12 18.725H4.436" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M13.682 3.596v3.362" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M8.639 10.318v3.362" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M15.361 17.043v3.362" })] }));
|
|
14
|
-
});
|
|
15
|
-
exports.IconShaiXuan2.displayName = 'IconShaiXuan2';
|
|
16
|
-
exports.default = exports.IconShaiXuan2;
|
|
17
|
-
//# sourceMappingURL=IconShaiXuan2.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconShaiXuan2.js","sourceRoot":"","sources":["../../../src/icons/IconShaiXuan2.tsx"],"names":[],"mappings":";;;;AAAA,iCAA0C;AAU1C;;;;;GAKG;AACU,QAAA,aAAa,GAAG,IAAA,kBAAU,EACrC,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IACxD,OAAO,CACL,iCACE,GAAG,EAAE,GAAG,EACR,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,EAAE,KAC5C,KAAK,aAET,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,sBAAsB,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,qBAAqB,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,eAAe,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,iBAAiB,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,sBAAsB,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,kBAAkB,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,qBAAqB,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,qBAAqB,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,sBAAsB,GAAE,IACxhC,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,qBAAa,CAAC,WAAW,GAAG,eAAe,CAAC;AAE5C,kBAAe,qBAAa,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IconShiBai1 = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const react_1 = require("react");
|
|
6
|
-
/**
|
|
7
|
-
* IconShiBai1 icon component
|
|
8
|
-
*
|
|
9
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
10
|
-
* @param ref - Forwarded ref to the SVG element
|
|
11
|
-
*/
|
|
12
|
-
exports.IconShiBai1 = (0, react_1.forwardRef)(({ size = 24, color, className, style, ...props }, ref) => {
|
|
13
|
-
return ((0, jsx_runtime_1.jsxs)("svg", { ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", className: className, style: { ...(color ? { color } : {}), ...style }, ...props, children: [(0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.478 2 12s4.477 10 10 10" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M12 8v4" }), (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M12 16h.01" })] }));
|
|
14
|
-
});
|
|
15
|
-
exports.IconShiBai1.displayName = 'IconShiBai1';
|
|
16
|
-
exports.default = exports.IconShiBai1;
|
|
17
|
-
//# sourceMappingURL=IconShiBai1.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconShiBai1.js","sourceRoot":"","sources":["../../../src/icons/IconShiBai1.tsx"],"names":[],"mappings":";;;;AAAA,iCAA0C;AAU1C;;;;;GAKG;AACU,QAAA,WAAW,GAAG,IAAA,kBAAU,EACnC,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IACxD,OAAO,CACL,iCACE,GAAG,EAAE,GAAG,EACR,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,EAAE,KAC5C,KAAK,aAET,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,yEAAyE,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,SAAS,GAAE,EAAA,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,YAAY,GAAE,IACjX,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,mBAAW,CAAC,WAAW,GAAG,aAAa,CAAC;AAExC,kBAAe,mBAAW,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IconTongBuZhong1 = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const react_1 = require("react");
|
|
6
|
-
/**
|
|
7
|
-
* IconTongBuZhong1 icon component
|
|
8
|
-
*
|
|
9
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
10
|
-
* @param ref - Forwarded ref to the SVG element
|
|
11
|
-
*/
|
|
12
|
-
exports.IconTongBuZhong1 = (0, react_1.forwardRef)(({ size = 24, color, className, style, ...props }, ref) => {
|
|
13
|
-
return ((0, jsx_runtime_1.jsx)("svg", { ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", className: className, style: { ...(color ? { color } : {}), ...style }, ...props, children: (0, jsx_runtime_1.jsx)("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M3 12a9 9 0 1 1 6.22 8.56" }) }));
|
|
14
|
-
});
|
|
15
|
-
exports.IconTongBuZhong1.displayName = 'IconTongBuZhong1';
|
|
16
|
-
exports.default = exports.IconTongBuZhong1;
|
|
17
|
-
//# sourceMappingURL=IconTongBuZhong1.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconTongBuZhong1.js","sourceRoot":"","sources":["../../../src/icons/IconTongBuZhong1.tsx"],"names":[],"mappings":";;;;AAAA,iCAA0C;AAU1C;;;;;GAKG;AACU,QAAA,gBAAgB,GAAG,IAAA,kBAAU,EACxC,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IACxD,OAAO,CACL,gCACE,GAAG,EAAE,GAAG,EACR,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,EAAE,KAC5C,KAAK,YAET,iCAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,2BAA2B,GAAE,GACpH,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,wBAAgB,CAAC,WAAW,GAAG,kBAAkB,CAAC;AAElD,kBAAe,wBAAgB,CAAC"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef } from 'react';
|
|
3
|
-
/**
|
|
4
|
-
* IconChengGong1 icon component
|
|
5
|
-
*
|
|
6
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
7
|
-
* @param ref - Forwarded ref to the SVG element
|
|
8
|
-
*/
|
|
9
|
-
export const IconChengGong1 = forwardRef(({ size = 24, color, className, style, ...props }, ref) => {
|
|
10
|
-
return (_jsxs("svg", { ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", className: className, style: { ...(color ? { color } : {}), ...style }, ...props, children: [_jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.478 2 12s4.477 10 10 10" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "m9 12 2 2 4-4" })] }));
|
|
11
|
-
});
|
|
12
|
-
IconChengGong1.displayName = 'IconChengGong1';
|
|
13
|
-
export default IconChengGong1;
|
|
14
|
-
//# sourceMappingURL=IconChengGong1.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconChengGong1.js","sourceRoot":"","sources":["../../../src/icons/IconChengGong1.tsx"],"names":[],"mappings":";AAAA,OAAc,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AAU1C;;;;;GAKG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,UAAU,CACtC,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IACxD,OAAO,CACL,eACE,GAAG,EAAE,GAAG,EACR,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,EAAE,KAC5C,KAAK,aAET,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,yEAAyE,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,eAAe,GAAE,IAC9Q,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,cAAc,CAAC,WAAW,GAAG,gBAAgB,CAAC;AAE9C,eAAe,cAAc,CAAC"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef } from 'react';
|
|
3
|
-
/**
|
|
4
|
-
* IconChongShi2 icon component
|
|
5
|
-
*
|
|
6
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
7
|
-
* @param ref - Forwarded ref to the SVG element
|
|
8
|
-
*/
|
|
9
|
-
export const IconChongShi2 = forwardRef(({ size = 24, color, className, style, ...props }, ref) => {
|
|
10
|
-
return (_jsxs("svg", { ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", className: className, style: { ...(color ? { color } : {}), ...style }, ...props, children: [_jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M21 4v8" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M3 12v8" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M21 12A9 9 0 0 0 5.524 5.75M3 12a9 9 0 0 0 15.25 6.476" })] }));
|
|
11
|
-
});
|
|
12
|
-
IconChongShi2.displayName = 'IconChongShi2';
|
|
13
|
-
export default IconChongShi2;
|
|
14
|
-
//# sourceMappingURL=IconChongShi2.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconChongShi2.js","sourceRoot":"","sources":["../../../src/icons/IconChongShi2.tsx"],"names":[],"mappings":";AAAA,OAAc,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AAU1C;;;;;GAKG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,UAAU,CACrC,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IACxD,OAAO,CACL,eACE,GAAG,EAAE,GAAG,EACR,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,EAAE,KAC5C,KAAK,aAET,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,KAAK,EAAC,CAAC,EAAC,SAAS,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,KAAK,EAAC,CAAC,EAAC,SAAS,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,KAAK,EAAC,CAAC,EAAC,wDAAwD,GAAE,IACnW,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,aAAa,CAAC,WAAW,GAAG,eAAe,CAAC;AAE5C,eAAe,aAAa,CAAC"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef } from 'react';
|
|
3
|
-
/**
|
|
4
|
-
* IconShaiXuan2 icon component
|
|
5
|
-
*
|
|
6
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
7
|
-
* @param ref - Forwarded ref to the SVG element
|
|
8
|
-
*/
|
|
9
|
-
export const IconShaiXuan2 = forwardRef(({ size = 24, color, className, style, ...props }, ref) => {
|
|
10
|
-
return (_jsxs("svg", { ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", className: className, style: { ...(color ? { color } : {}), ...style }, ...props, children: [_jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M19.565 5.275h-5.883" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M10.319 5.275H4.436" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M19.565 12H12" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M8.638 12H4.436" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M19.564 18.725H15.36" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M12 18.725H4.436" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M13.682 3.596v3.362" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M8.639 10.318v3.362" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.681", d: "M15.361 17.043v3.362" })] }));
|
|
11
|
-
});
|
|
12
|
-
IconShaiXuan2.displayName = 'IconShaiXuan2';
|
|
13
|
-
export default IconShaiXuan2;
|
|
14
|
-
//# sourceMappingURL=IconShaiXuan2.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconShaiXuan2.js","sourceRoot":"","sources":["../../../src/icons/IconShaiXuan2.tsx"],"names":[],"mappings":";AAAA,OAAc,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AAU1C;;;;;GAKG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,UAAU,CACrC,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IACxD,OAAO,CACL,eACE,GAAG,EAAE,GAAG,EACR,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,EAAE,KAC5C,KAAK,aAET,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,sBAAsB,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,qBAAqB,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,eAAe,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,iBAAiB,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,sBAAsB,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,kBAAkB,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,qBAAqB,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,qBAAqB,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,OAAO,EAAC,CAAC,EAAC,sBAAsB,GAAE,IACxhC,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,aAAa,CAAC,WAAW,GAAG,eAAe,CAAC;AAE5C,eAAe,aAAa,CAAC"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef } from 'react';
|
|
3
|
-
/**
|
|
4
|
-
* IconShiBai1 icon component
|
|
5
|
-
*
|
|
6
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
7
|
-
* @param ref - Forwarded ref to the SVG element
|
|
8
|
-
*/
|
|
9
|
-
export const IconShiBai1 = forwardRef(({ size = 24, color, className, style, ...props }, ref) => {
|
|
10
|
-
return (_jsxs("svg", { ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", className: className, style: { ...(color ? { color } : {}), ...style }, ...props, children: [_jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.478 2 12s4.477 10 10 10" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M12 8v4" }), _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M12 16h.01" })] }));
|
|
11
|
-
});
|
|
12
|
-
IconShiBai1.displayName = 'IconShiBai1';
|
|
13
|
-
export default IconShiBai1;
|
|
14
|
-
//# sourceMappingURL=IconShiBai1.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconShiBai1.js","sourceRoot":"","sources":["../../../src/icons/IconShiBai1.tsx"],"names":[],"mappings":";AAAA,OAAc,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AAU1C;;;;;GAKG;AACH,MAAM,CAAC,MAAM,WAAW,GAAG,UAAU,CACnC,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IACxD,OAAO,CACL,eACE,GAAG,EAAE,GAAG,EACR,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,EAAE,KAC5C,KAAK,aAET,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,yEAAyE,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,SAAS,GAAE,EAAA,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,YAAY,GAAE,IACjX,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,WAAW,CAAC,WAAW,GAAG,aAAa,CAAC;AAExC,eAAe,WAAW,CAAC"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef } from 'react';
|
|
3
|
-
/**
|
|
4
|
-
* IconTongBuZhong1 icon component
|
|
5
|
-
*
|
|
6
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
7
|
-
* @param ref - Forwarded ref to the SVG element
|
|
8
|
-
*/
|
|
9
|
-
export const IconTongBuZhong1 = forwardRef(({ size = 24, color, className, style, ...props }, ref) => {
|
|
10
|
-
return (_jsx("svg", { ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", className: className, style: { ...(color ? { color } : {}), ...style }, ...props, children: _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M3 12a9 9 0 1 1 6.22 8.56" }) }));
|
|
11
|
-
});
|
|
12
|
-
IconTongBuZhong1.displayName = 'IconTongBuZhong1';
|
|
13
|
-
export default IconTongBuZhong1;
|
|
14
|
-
//# sourceMappingURL=IconTongBuZhong1.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconTongBuZhong1.js","sourceRoot":"","sources":["../../../src/icons/IconTongBuZhong1.tsx"],"names":[],"mappings":";AAAA,OAAc,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AAU1C;;;;;GAKG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,UAAU,CACxC,CAAC,EAAE,IAAI,GAAG,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IACxD,OAAO,CACL,cACE,GAAG,EAAE,GAAG,EACR,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,EAAE,KAC5C,KAAK,YAET,eAAM,MAAM,EAAC,cAAc,EAAC,aAAa,EAAC,OAAO,EAAC,cAAc,EAAC,OAAO,EAAC,WAAW,EAAC,GAAG,EAAC,CAAC,EAAC,2BAA2B,GAAE,GACpH,CACP,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,gBAAgB,CAAC,WAAW,GAAG,kBAAkB,CAAC;AAElD,eAAe,gBAAgB,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface IconChengGong1Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
/** Icon size (width and height) */
|
|
5
|
-
size?: number | string;
|
|
6
|
-
/** Icon color */
|
|
7
|
-
color?: string;
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* IconChengGong1 icon component
|
|
11
|
-
*
|
|
12
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
13
|
-
* @param ref - Forwarded ref to the SVG element
|
|
14
|
-
*/
|
|
15
|
-
export declare const IconChengGong1: React.ForwardRefExoticComponent<Omit<IconChengGong1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
16
|
-
export default IconChengGong1;
|
|
17
|
-
//# sourceMappingURL=IconChengGong1.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconChengGong1.d.ts","sourceRoot":"","sources":["../../../src/icons/IconChengGong1.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,MAAM,WAAW,mBAAoB,SAAQ,QAAQ,CAAC,aAAa,CAAC;IAClE,mCAAmC;IACnC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,iBAAiB;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,eAAO,MAAM,cAAc,wGAkB1B,CAAC;AAIF,eAAe,cAAc,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface IconChongShi2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
/** Icon size (width and height) */
|
|
5
|
-
size?: number | string;
|
|
6
|
-
/** Icon color */
|
|
7
|
-
color?: string;
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* IconChongShi2 icon component
|
|
11
|
-
*
|
|
12
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
13
|
-
* @param ref - Forwarded ref to the SVG element
|
|
14
|
-
*/
|
|
15
|
-
export declare const IconChongShi2: React.ForwardRefExoticComponent<Omit<IconChongShi2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
16
|
-
export default IconChongShi2;
|
|
17
|
-
//# sourceMappingURL=IconChongShi2.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconChongShi2.d.ts","sourceRoot":"","sources":["../../../src/icons/IconChongShi2.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,MAAM,WAAW,kBAAmB,SAAQ,QAAQ,CAAC,aAAa,CAAC;IACjE,mCAAmC;IACnC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,iBAAiB;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,eAAO,MAAM,aAAa,uGAkBzB,CAAC;AAIF,eAAe,aAAa,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface IconShaiXuan2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
/** Icon size (width and height) */
|
|
5
|
-
size?: number | string;
|
|
6
|
-
/** Icon color */
|
|
7
|
-
color?: string;
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* IconShaiXuan2 icon component
|
|
11
|
-
*
|
|
12
|
-
* @param props - Component props including size, color, and SVG attributes
|
|
13
|
-
* @param ref - Forwarded ref to the SVG element
|
|
14
|
-
*/
|
|
15
|
-
export declare const IconShaiXuan2: React.ForwardRefExoticComponent<Omit<IconShaiXuan2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
16
|
-
export default IconShaiXuan2;
|
|
17
|
-
//# sourceMappingURL=IconShaiXuan2.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconShaiXuan2.d.ts","sourceRoot":"","sources":["../../../src/icons/IconShaiXuan2.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,MAAM,WAAW,kBAAmB,SAAQ,QAAQ,CAAC,aAAa,CAAC;IACjE,mCAAmC;IACnC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,iBAAiB;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,eAAO,MAAM,aAAa,uGAkBzB,CAAC;AAIF,eAAe,aAAa,CAAC"}
|