@xipkg/icons 0.10.3 → 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,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
@@ -123,6 +123,7 @@ import { MicrophoneOff } from './icons/MicrophoneOff';
123
123
  import { CameraOff } from './icons/CameraOff';
124
124
  import { RedLine } from './icons/RedLine';
125
125
  import { SpeakerHorizontal } from './icons/SpeakerHorizontal';
126
+ import { Minus } from './icons/Minus';
126
127
  import { icons } from './config';
127
128
 
128
129
  export {
@@ -251,6 +252,7 @@ export {
251
252
  RedLine,
252
253
  SpeakerHorizontal,
253
254
  Minimize,
255
+ Minus,
254
256
  icons,
255
257
  };
256
258
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xipkg/icons",
3
- "version": "0.10.3",
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
  }