@xipkg/icons 0.9.2 → 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
  ];
@@ -3,8 +3,9 @@ import { Svg, IconProps } from '../Svg';
3
3
  export const ChevronRight = ({ ...props }: IconProps) => (
4
4
  <Svg {...props}>
5
5
  <path
6
- d="M8.487 3.56a2.155 2.155 0 0 0-.511.367c-.528.507-.669 1.049-.414 1.593.113.24.363.501 3.23 3.37L13.899 12l-3.107 3.11c-2.867 2.869-3.117 3.13-3.23 3.37-.247.527-.128 1.031.365 1.544.342.356.702.536 1.073.536.227 0 .312-.021.545-.139.254-.127.565-.428 4.023-3.89 3.472-3.475 3.757-3.77 3.87-4.011.17-.363.17-.677 0-1.04-.113-.241-.398-.536-3.87-4.011-3.458-3.462-3.769-3.763-4.023-3.89-.374-.189-.688-.194-1.058-.019"
7
6
  fillRule="evenodd"
7
+ clipRule="evenodd"
8
+ d="M8.29289 4.29289C8.68342 3.90237 9.31658 3.90237 9.70711 4.29289L16.7071 11.2929C17.0976 11.6834 17.0976 12.3166 16.7071 12.7071L9.70711 19.7071C9.31658 20.0976 8.68342 20.0976 8.29289 19.7071C7.90237 19.3166 7.90237 18.6834 8.29289 18.2929L14.5858 12L8.29289 5.70711C7.90237 5.31658 7.90237 4.68342 8.29289 4.29289Z"
8
9
  />
9
10
  </Svg>
10
11
  );
@@ -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.2",
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
  }