@xipkg/icons 0.9.3 → 0.9.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
@@ -117,4 +117,5 @@ export const icons = [
117
117
  'Group',
118
118
  'ThinArrowRight',
119
119
  'TelegramFilled',
120
+ 'WhiteBoard'
120
121
  ];
@@ -0,0 +1,10 @@
1
+ import { Svg, IconProps } from '../Svg';
2
+
3
+ export const WhiteBoard = ({ ...props }: IconProps) => (
4
+ <Svg {...props}>
5
+ <path
6
+ d="M6.579 5.041c-1.72.172-3.114 1.439-3.488 3.172-.065.298-.071.632-.071 3.787s.006 3.489.071 3.787c.35 1.623 1.59 2.836 3.209 3.14.41.078 10.99.078 11.4 0a4.015 4.015 0 0 0 3.072-2.647c.208-.607.208-.612.208-4.28 0-2.659-.012-3.482-.053-3.7a4.025 4.025 0 0 0-2.545-3.038c-.665-.25-.326-.237-6.162-.245-2.926-.004-5.465.007-5.641.024m10.897 2.001c.664.154 1.328.818 1.482 1.482.055.239.055 6.713 0 6.952-.154.664-.818 1.328-1.482 1.482-.242.055-10.71.055-10.952 0-.342-.079-.615-.242-.927-.555-.469-.469-.594-.792-.596-1.543L5 14.419l1.051-1.05 1.052-1.051 1.389 1.041c.765.572 1.499 1.096 1.632 1.163.516.26 1.189.253 1.733-.018.201-.1.914-.646 2.463-1.885 1.199-.96 2.249-1.811 2.333-1.892.229-.219.314-.412.318-.723.005-.396-.196-.714-.571-.907-.214-.109-.623-.096-.846.029-.096.053-1.161.887-2.368 1.853-2.023 1.619-2.2 1.751-2.276 1.704a93.731 93.731 0 0 1-1.348-1.002 60.459 60.459 0 0 0-1.431-1.054c-.581-.367-1.418-.375-2.041-.02-.116.066-.409.309-.65.541l-.44.421.001-1.435c.001-.821.018-1.509.041-1.61.151-.654.818-1.328 1.466-1.48.218-.052 10.745-.053 10.968-.002"
7
+ fillRule="evenodd"
8
+ />
9
+ </Svg>
10
+ );
package/index.ts CHANGED
@@ -116,6 +116,7 @@ import { Plus } from './icons/Plus';
116
116
  import { CaretUp } from './icons/CaretUp';
117
117
  import { Conference } from './icons/Conference';
118
118
  import { Group } from './icons/Group';
119
+ import { WhiteBoard } from './icons/WhiteBoard';
119
120
  import { Crown } from './icons/Crown';
120
121
  import { icons } from './config';
121
122
 
@@ -239,6 +240,7 @@ export {
239
240
  Conference,
240
241
  Group,
241
242
  Crown,
243
+ WhiteBoard,
242
244
  icons,
243
245
  };
244
246
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xipkg/icons",
3
- "version": "0.9.3",
3
+ "version": "0.9.4",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "license": "MIT",
package/tsconfig.json CHANGED
@@ -120,7 +120,8 @@
120
120
  "icons/Plus.tsx",
121
121
  "icons/CaretUp.tsx",
122
122
  "icons/Conference.tsx",
123
- "icons/Group.tsx"
123
+ "icons/Group.tsx",
124
+ "icons/WhiteBoard.tsx"
124
125
  ],
125
126
  "exclude": ["dist", "build", "node_modules"]
126
127
  }