@xipkg/icons 0.7.4 → 0.7.5

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
@@ -109,4 +109,5 @@ export const icons = [
109
109
  'Video',
110
110
  'Window',
111
111
  'SoundTwo',
112
+ 'Plus',
112
113
  ];
package/icons/Plus.tsx ADDED
@@ -0,0 +1,8 @@
1
+ import { Svg, IconProps } from '../Svg';
2
+
3
+ export const Plus = ({ ...props }: IconProps) => (
4
+ <Svg {...props}>
5
+ <path d="M11 5C11 4.44772 11.4477 4 12 4C12.5523 4 13 4.44772 13 5V19C13 19.5523 12.5523 20 12 20C11.4477 20 11 19.5523 11 19V5Z" />
6
+ <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" />
7
+ </Svg>
8
+ );
package/index.ts CHANGED
@@ -110,6 +110,7 @@ import { VariantSelect } from './icons/VariantSelect';
110
110
  import { Video } from './icons/Video';
111
111
  import { Window } from './icons/Window';
112
112
  import { SoundTwo } from './icons/SoundTwo';
113
+ import { Plus } from './icons/Plus';
113
114
  import { icons } from './config';
114
115
 
115
116
  export {
@@ -225,6 +226,7 @@ export {
225
226
  Video,
226
227
  Window,
227
228
  SoundTwo,
229
+ Plus,
228
230
  icons,
229
231
  };
230
232
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xipkg/icons",
3
- "version": "0.7.4",
3
+ "version": "0.7.5",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "license": "MIT",
package/tsconfig.json CHANGED
@@ -112,7 +112,8 @@
112
112
  "icons/VariantSelect.tsx",
113
113
  "icons/Window.tsx",
114
114
  "icons/Video.tsx",
115
- "icons/SoundTwo.tsx"
115
+ "icons/SoundTwo.tsx",
116
+ "icons/Plus.tsx"
116
117
  ],
117
118
  "exclude": ["dist", "build", "node_modules"]
118
119
  }