@xipkg/icons 1.1.0 → 1.1.1
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/config.ts +2 -0
- package/icons/MenuDots.tsx +9 -0
- package/icons/Share.tsx +11 -0
- package/index.ts +4 -0
- package/package.json +1 -1
package/config.ts
CHANGED
|
@@ -64,6 +64,7 @@ export const icons = [
|
|
|
64
64
|
'LongAnswer',
|
|
65
65
|
'Mail',
|
|
66
66
|
'Maximize',
|
|
67
|
+
'MenuDots',
|
|
67
68
|
'Microphone',
|
|
68
69
|
'Minimize',
|
|
69
70
|
'Moon',
|
|
@@ -110,6 +111,7 @@ export const icons = [
|
|
|
110
111
|
'VariantSelect',
|
|
111
112
|
'Video',
|
|
112
113
|
'Window',
|
|
114
|
+
'Share',
|
|
113
115
|
'SoundTwo',
|
|
114
116
|
'Plus',
|
|
115
117
|
'CaretUp',
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Svg, IconProps } from '../Svg';
|
|
2
|
+
|
|
3
|
+
export const MenuDots = ({ ...props }: IconProps) => (
|
|
4
|
+
<Svg {...props}>
|
|
5
|
+
<path d="M14 6C14 7.10457 13.1046 8 12 8C10.8954 8 10 7.10457 10 6C10 4.89543 10.8954 4 12 4C13.1046 4 14 4.89543 14 6Z" />
|
|
6
|
+
<path d="M14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12Z" />
|
|
7
|
+
<path d="M12 20C13.1046 20 14 19.1046 14 18C14 16.8954 13.1046 16 12 16C10.8954 16 10 16.8954 10 18C10 19.1046 10.8954 20 12 20Z" />
|
|
8
|
+
</Svg>
|
|
9
|
+
);
|
package/icons/Share.tsx
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Svg, IconProps } from '../Svg';
|
|
2
|
+
|
|
3
|
+
export const Share = ({ ...props }: IconProps) => (
|
|
4
|
+
<Svg {...props}>
|
|
5
|
+
<path
|
|
6
|
+
fillRule="evenodd"
|
|
7
|
+
clipRule="evenodd"
|
|
8
|
+
d="M12 7.91452V7.50475C12 5.39196 14.4584 4.23181 16.0893 5.57493L20.8209 9.47154C21.9835 10.429 22.0418 12.1896 20.945 13.2219L16.2134 17.6751C14.618 19.1767 12 18.0456 12 15.8546V14.9188C8.32841 15.2784 5.7479 16.6997 3.81376 19.4075C3.55283 19.7728 3.08045 19.9195 2.65852 19.7662C2.2366 19.6129 1.96854 19.1972 2.00297 18.7496C2.26218 15.3798 3.18166 12.5968 5.18089 10.6689C6.82728 9.08134 9.08969 8.1849 12 7.91452ZM14 7.50475C14 7.0822 14.4917 6.85017 14.8179 7.11879L19.5495 11.0154C19.782 11.2069 19.7937 11.559 19.5743 11.7655L14.8427 16.2187C14.5236 16.5191 14 16.2928 14 15.8546V14C14 13 13.338 12.8191 12.5 12.8728C9.30395 13.0777 6.67367 13.9682 4.53377 15.7142C4.96822 14.1948 5.64032 13.0043 6.56916 12.1086C7.84499 10.8784 9.73012 10.2055 12.5 10C13.5925 9.91894 14 9.5 14 9V7.50475Z"
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
package/index.ts
CHANGED
|
@@ -63,6 +63,7 @@ import { LongAnswer } from './icons/LongAnswer';
|
|
|
63
63
|
import { Mail } from './icons/Mail';
|
|
64
64
|
import { MailRounded } from './icons/MailRounded';
|
|
65
65
|
import { Maximize } from './icons/Maximize';
|
|
66
|
+
import { MenuDots } from './icons/MenuDots';
|
|
66
67
|
import { Microphone } from './icons/Microphone';
|
|
67
68
|
import { Minimize } from './icons/Minimize';
|
|
68
69
|
import { Moon } from './icons/Moon';
|
|
@@ -89,6 +90,7 @@ import { Section } from './icons/Section';
|
|
|
89
90
|
import { Send } from './icons/Send';
|
|
90
91
|
import { Settings } from './icons/Settings';
|
|
91
92
|
import { Shape } from './icons/Shape';
|
|
93
|
+
import { Share } from './icons/Share';
|
|
92
94
|
import { SimpleAnswer } from './icons/SimpleAnswer';
|
|
93
95
|
import { Sort } from './icons/Sort';
|
|
94
96
|
import { Stroke } from './icons/Stroke';
|
|
@@ -203,6 +205,7 @@ export {
|
|
|
203
205
|
Mail,
|
|
204
206
|
MailRounded,
|
|
205
207
|
Maximize,
|
|
208
|
+
MenuDots,
|
|
206
209
|
Microphone,
|
|
207
210
|
Moon,
|
|
208
211
|
MoreVert,
|
|
@@ -228,6 +231,7 @@ export {
|
|
|
228
231
|
Send,
|
|
229
232
|
Settings,
|
|
230
233
|
Shape,
|
|
234
|
+
Share,
|
|
231
235
|
SimpleAnswer,
|
|
232
236
|
Sort,
|
|
233
237
|
Soundoff,
|