@xipkg/icons 0.10.2 → 0.10.4

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
@@ -122,4 +122,5 @@ export const icons = [
122
122
  'RedLine',
123
123
  'SpeakerHorizontal',
124
124
  'Minimize',
125
+ 'Minus',
125
126
  ];
@@ -0,0 +1,10 @@
1
+ import { Svg, IconProps } from '../Svg';
2
+
3
+ export const MailRounded = ({ ...props }: IconProps) => (
4
+ <Svg {...props}>
5
+ <path
6
+ d="M17 4H7C4.23858 4 2 6.23858 2 9V15C2 17.7614 4.23858 20 7 20H17C19.7614 20 22 17.7614 22 15V9C22 6.23858 19.7614 4 17 4ZM4.86519 6.89226C5.40911 6.34139 6.16469 6 7 6H17C17.8353 6 18.5909 6.34139 19.1348 6.89226L12 10.856L4.86519 6.89226ZM4.01409 8.70734C4.00477 8.80364 4 8.90126 4 9V15C4 16.6569 5.34315 18 7 18H17C18.6569 18 20 16.6569 20 15V9C20 8.90126 19.9952 8.80364 19.9859 8.70734L12.7285 12.7393C12.2754 12.9909 11.7246 12.9909 11.2715 12.7393L4.01409 8.70734Z"
7
+ fillRule="evenodd" clipRule="evenodd"
8
+ />
9
+ </Svg>
10
+ );
@@ -0,0 +1,7 @@
1
+ import { Svg, IconProps } from '../Svg';
2
+
3
+ export const Minus = ({ ...props }: IconProps) => (
4
+ <Svg {...props}>
5
+ <path d="M4 12C4 11.4477 4.44772 11 5 11H19C19.5523 11 20 11.4477 20 12C20 12.5523 19.5523 13 19 13H5C4.44772 13 4 12.5523 4 12Z" />
6
+ </Svg>
7
+ );
package/index.ts CHANGED
@@ -61,6 +61,7 @@ import { Link } from './icons/Link';
61
61
  import { Locked } from './icons/Locked';
62
62
  import { LongAnswer } from './icons/LongAnswer';
63
63
  import { Mail } from './icons/Mail';
64
+ import { MailRounded } from './icons/MailRounded';
64
65
  import { Maximize } from './icons/Maximize';
65
66
  import { Microphone } from './icons/Microphone';
66
67
  import { Minimize } from './icons/Minimize';
@@ -122,6 +123,7 @@ import { MicrophoneOff } from './icons/MicrophoneOff';
122
123
  import { CameraOff } from './icons/CameraOff';
123
124
  import { RedLine } from './icons/RedLine';
124
125
  import { SpeakerHorizontal } from './icons/SpeakerHorizontal';
126
+ import { Minus } from './icons/Minus';
125
127
  import { icons } from './config';
126
128
 
127
129
  export {
@@ -188,6 +190,7 @@ export {
188
190
  Locked,
189
191
  LongAnswer,
190
192
  Mail,
193
+ MailRounded,
191
194
  Maximize,
192
195
  Microphone,
193
196
  Moon,
@@ -249,6 +252,7 @@ export {
249
252
  RedLine,
250
253
  SpeakerHorizontal,
251
254
  Minimize,
255
+ Minus,
252
256
  icons,
253
257
  };
254
258
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xipkg/icons",
3
- "version": "0.10.2",
3
+ "version": "0.10.4",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "license": "MIT",
package/tsconfig.json CHANGED
@@ -124,7 +124,8 @@
124
124
  "icons/WhiteBoard.tsx",
125
125
  "icons/SpeakerHorizontal.tsx",
126
126
  "icons/MicrophoneOff.tsx",
127
- "icons/CameraOff.tsx"
127
+ "icons/CameraOff.tsx",
128
+ "icons/Minus"
128
129
  ],
129
130
  "exclude": ["dist", "build", "node_modules"]
130
131
  }