@xipkg/icons 0.10.0 → 0.10.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/config.ts CHANGED
@@ -119,5 +119,7 @@ export const icons = [
119
119
  'TelegramFilled',
120
120
  'WhiteBoard',
121
121
  'MicrophoneOff',
122
- 'RedLine'
122
+ 'RedLine',
123
+ 'SpeakerHorizontal',
124
+ 'Minimize',
123
125
  ];
@@ -0,0 +1,10 @@
1
+ import { Svg, IconProps } from '../Svg';
2
+
3
+ export const SpeakerHorizontal = ({ ...props }: IconProps) => (
4
+ <Svg {...props}>
5
+ <path d="M19 2.5C19.4647 2.5 19.697 2.5 19.8902 2.53843C20.6836 2.69624 21.3038 3.31644 21.4616 4.10982C21.5 4.30302 21.5 4.53534 21.5 5C21.5 5.46466 21.5 5.69698 21.4616 5.89018C21.3038 6.68356 20.6836 7.30376 19.8902 7.46157C19.697 7.5 19.4647 7.5 19 7.5C18.5353 7.5 18.303 7.5 18.1098 7.46157C17.3164 7.30376 16.6962 6.68356 16.5384 5.89018C16.5 5.69698 16.5 5.46465 16.5 5C16.5 4.53534 16.5 4.30302 16.5384 4.10982C16.6962 3.31644 17.3164 2.69624 18.1098 2.53843C18.303 2.5 18.5353 2.5 19 2.5Z" />
6
+ <path d="M11.3 2.5C12.4201 2.5 12.9802 2.5 13.408 2.71799C13.7843 2.90973 14.0903 3.21569 14.282 3.59202C14.5 4.01984 14.5 4.57989 14.5 5.7L14.5 18.3C14.5 19.4201 14.5 19.9802 14.282 20.408C14.0903 20.7843 13.7843 21.0903 13.408 21.282C12.9802 21.5 12.4201 21.5 11.3 21.5L5.7 21.5C4.57989 21.5 4.01984 21.5 3.59202 21.282C3.21569 21.0903 2.90973 20.7843 2.71799 20.408C2.5 19.9802 2.5 19.4201 2.5 18.3L2.5 5.7C2.5 4.57989 2.5 4.01984 2.71799 3.59202C2.90973 3.21569 3.21569 2.90973 3.59202 2.71799C4.01984 2.5 4.5799 2.5 5.7 2.5L11.3 2.5Z" />
7
+ <path d="M19 9.5C19.4647 9.5 19.697 9.5 19.8902 9.53843C20.6836 9.69624 21.3038 10.3164 21.4616 11.1098C21.5 11.303 21.5 11.5353 21.5 12C21.5 12.4647 21.5 12.697 21.4616 12.8902C21.3038 13.6836 20.6836 14.3038 19.8902 14.4616C19.697 14.5 19.4647 14.5 19 14.5C18.5353 14.5 18.303 14.5 18.1098 14.4616C17.3164 14.3038 16.6962 13.6836 16.5384 12.8902C16.5 12.697 16.5 12.4647 16.5 12C16.5 11.5353 16.5 11.303 16.5384 11.1098C16.6962 10.3164 17.3164 9.69624 18.1098 9.53843C18.303 9.5 18.5353 9.5 19 9.5Z" />
8
+ <path d="M19 16.5C19.4647 16.5 19.697 16.5 19.8902 16.5384C20.6836 16.6962 21.3038 17.3164 21.4616 18.1098C21.5 18.303 21.5 18.5353 21.5 19C21.5 19.4647 21.5 19.697 21.4616 19.8902C21.3038 20.6836 20.6836 21.3038 19.8902 21.4616C19.697 21.5 19.4647 21.5 19 21.5C18.5353 21.5 18.303 21.5 18.1098 21.4616C17.3164 21.3038 16.6962 20.6836 16.5384 19.8902C16.5 19.697 16.5 19.4647 16.5 19C16.5 18.5353 16.5 18.303 16.5384 18.1098C16.6962 17.3164 17.3164 16.6962 18.1098 16.5384C18.303 16.5 18.5353 16.5 19 16.5Z" />
9
+ </Svg>
10
+ );
package/index.ts CHANGED
@@ -121,6 +121,7 @@ import { Crown } from './icons/Crown';
121
121
  import { MicrophoneOff } from './icons/MicrophoneOff';
122
122
  import { CameraOff } from './icons/CameraOff';
123
123
  import { RedLine } from './icons/RedLine';
124
+ import { SpeakerHorizontal } from './icons/SpeakerHorizontal';
124
125
  import { icons } from './config';
125
126
 
126
127
  export {
@@ -189,7 +190,6 @@ export {
189
190
  Mail,
190
191
  Maximize,
191
192
  Microphone,
192
- Minimize,
193
193
  Moon,
194
194
  MoreVert,
195
195
  Move,
@@ -247,6 +247,8 @@ export {
247
247
  MicrophoneOff,
248
248
  CameraOff,
249
249
  RedLine,
250
+ SpeakerHorizontal,
251
+ Minimize,
250
252
  icons,
251
253
  };
252
254
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xipkg/icons",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "license": "MIT",
package/tsconfig.json CHANGED
@@ -122,6 +122,7 @@
122
122
  "icons/Conference.tsx",
123
123
  "icons/Group.tsx",
124
124
  "icons/WhiteBoard.tsx",
125
+ "icons/SpeakerHorizontal.tsx",
125
126
  "icons/MicrophoneOff.tsx",
126
127
  "icons/CameraOff.tsx"
127
128
  ],