@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 +1 -0
- package/icons/Plus.tsx +8 -0
- package/index.ts +2 -0
- package/package.json +1 -1
- package/tsconfig.json +2 -1
package/config.ts
CHANGED
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