@dxos/react-ui-gameboard 0.8.4-main.c4373fc → 0.8.4-main.c85a9c8dae
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/README.md +2 -0
- package/dist/lib/browser/index.mjs +547 -682
- package/dist/lib/browser/index.mjs.map +3 -3
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node-esm/index.mjs +547 -682
- package/dist/lib/node-esm/index.mjs.map +3 -3
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/types/src/components/Chessboard/Chessboard.d.ts +1 -1
- package/dist/types/src/components/Chessboard/Chessboard.d.ts.map +1 -1
- package/dist/types/src/components/Chessboard/Chessboard.stories.d.ts +1 -4
- package/dist/types/src/components/Chessboard/Chessboard.stories.d.ts.map +1 -1
- package/dist/types/src/components/Chessboard/chess.d.ts +5 -4
- package/dist/types/src/components/Chessboard/chess.d.ts.map +1 -1
- package/dist/types/src/components/Gameboard/Gameboard.d.ts +5 -6
- package/dist/types/src/components/Gameboard/Gameboard.d.ts.map +1 -1
- package/dist/types/src/components/Gameboard/Piece.d.ts.map +1 -1
- package/dist/types/src/components/Gameboard/Square.d.ts.map +1 -1
- package/dist/types/src/components/Gameboard/types.d.ts +2 -3
- package/dist/types/src/components/Gameboard/types.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/alpha/bB.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/alpha/bB.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/alpha/bK.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/alpha/bN.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/alpha/bP.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/alpha/bQ.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/alpha/bQ.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/alpha/bR.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/alpha/index.d.ts +12 -12
- package/dist/types/src/gen/pieces/chess/alpha/wB.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/alpha/wK.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/alpha/wN.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/alpha/wP.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/alpha/wQ.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/alpha/wR.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/bB.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/bB.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/cburnett/bK.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/bK.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/cburnett/bN.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/bN.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/cburnett/bP.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/bQ.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/bQ.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/cburnett/bR.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/bR.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/cburnett/index.d.ts +12 -12
- package/dist/types/src/gen/pieces/chess/cburnett/wB.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/wB.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/cburnett/wK.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/wK.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/cburnett/wN.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/wN.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/cburnett/wP.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/wQ.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/wQ.d.ts.map +1 -1
- package/dist/types/src/gen/pieces/chess/cburnett/wR.d.ts +2 -2
- package/dist/types/src/gen/pieces/chess/cburnett/wR.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +26 -23
- package/src/components/Chessboard/Chessboard.stories.tsx +9 -8
- package/src/components/Chessboard/Chessboard.tsx +21 -13
- package/src/components/Chessboard/chess.ts +13 -10
- package/src/components/Gameboard/Gameboard.tsx +8 -9
- package/src/components/Gameboard/Piece.tsx +5 -3
- package/src/components/Gameboard/Square.tsx +5 -3
- package/src/components/Gameboard/types.ts +2 -3
- package/src/gen/pieces/chess/alpha/bB.tsx +9 -6
- package/src/gen/pieces/chess/alpha/bK.tsx +7 -7
- package/src/gen/pieces/chess/alpha/bN.tsx +7 -7
- package/src/gen/pieces/chess/alpha/bP.tsx +5 -5
- package/src/gen/pieces/chess/alpha/bQ.tsx +9 -6
- package/src/gen/pieces/chess/alpha/bR.tsx +6 -6
- package/src/gen/pieces/chess/alpha/index.ts +12 -12
- package/src/gen/pieces/chess/alpha/wB.tsx +7 -7
- package/src/gen/pieces/chess/alpha/wK.tsx +7 -7
- package/src/gen/pieces/chess/alpha/wN.tsx +7 -7
- package/src/gen/pieces/chess/alpha/wP.tsx +7 -7
- package/src/gen/pieces/chess/alpha/wQ.tsx +7 -7
- package/src/gen/pieces/chess/alpha/wR.tsx +7 -7
- package/src/gen/pieces/chess/cburnett/bB.tsx +20 -9
- package/src/gen/pieces/chess/cburnett/bK.tsx +25 -15
- package/src/gen/pieces/chess/cburnett/bN.tsx +20 -13
- package/src/gen/pieces/chess/cburnett/bP.tsx +6 -6
- package/src/gen/pieces/chess/cburnett/bQ.tsx +19 -13
- package/src/gen/pieces/chess/cburnett/bR.tsx +27 -11
- package/src/gen/pieces/chess/cburnett/index.ts +12 -12
- package/src/gen/pieces/chess/cburnett/wB.tsx +19 -9
- package/src/gen/pieces/chess/cburnett/wK.tsx +19 -12
- package/src/gen/pieces/chess/cburnett/wN.tsx +16 -9
- package/src/gen/pieces/chess/cburnett/wP.tsx +7 -7
- package/src/gen/pieces/chess/cburnett/wQ.tsx +19 -9
- package/src/gen/pieces/chess/cburnett/wR.tsx +19 -9
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgWK = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048" {...props}>
|
|
5
5
|
<path
|
|
6
|
-
fill=
|
|
7
|
-
d=
|
|
6
|
+
fill="#f9f9f9"
|
|
7
|
+
d="m501.6 1811 48.4-354.4-260-269.2s-166.4-288.2 29.9-481C582.2 448.7 826 727.2 826 727.2l195.6-165.7 184 165.7s216.4-232.5 430.4-76 255.4 317.6 117.4 531.6c-138.1 214-250.9 280.7-250.9 280.7L1558 1811z"
|
|
8
8
|
/>
|
|
9
9
|
<path
|
|
10
|
-
fill=
|
|
11
|
-
d=
|
|
10
|
+
fill="#101010"
|
|
11
|
+
d="M977 298v-95h94v95h107v95h-107v153q-48-16-94 0V393H870v-95zm47 314q-47 0-136 121-31-36-50-55 93-140 186-140 92 0 186 140-20 19-50 55-90-121-136-121m-447 907-26 156 145-84zm410-206q-1-147-36.5-274.5T870 845q-45-88-131.5-153T570 627q-103 0-208 93T257 949q0 109 86.5 236T546 1408q212-88 441-95m37 530H448l61-365q-325-280-326-535-1-159 125-274.5T575 553q78 0 158.5 47T876 719q61 74 98.5 164.5T1024 1034q12-60 49-150.5t99-164.5q61-72 142-119t159-47q140 0 266 115.5T1865 943q-2 255-326 535l61 365zm0-74h489l-50-298q-216-84-439-84t-439 84l-50 298zm447-250 26 156-145-84zm-410-206q229 7 441 95 115-96 202-223t87-236q0-136-105.5-229T1478 627q-83 0-169.5 65T1178 845q-46 66-81.5 193.5T1061 1313m-176 233 141-84 137 86-141 84z"
|
|
12
12
|
/>
|
|
13
13
|
</svg>
|
|
14
14
|
);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgWN = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048" {...props}>
|
|
5
5
|
<path
|
|
6
|
-
fill=
|
|
7
|
-
d=
|
|
6
|
+
fill="#f9f9f9"
|
|
7
|
+
d="m352 861 787-569 94 148s336 103 398 388c63 286 51 974 51 974l-1088 9s-37-290 184-460c221-171 221-212 221-212s-226-71-295-16-117 138-117 138l-129-67 74-85-88-97-94 56z"
|
|
8
8
|
/>
|
|
9
9
|
<path
|
|
10
|
-
fill=
|
|
11
|
-
d=
|
|
10
|
+
fill="#101010"
|
|
11
|
+
d="m1151 178-115 154c-74 50-147 98-220 144-73 45-112 81-116 107L304 846l12 297 122-86 51 50-115 82 217 121 56-102c37-68 135-88 292-60l-55 85c-25 37-63 60-115 71a608 608 0 0 0-183 238c-32 82-45 182-39 301h1242c-23-55-42-118-57-190-15-73-17-152-5-237 29-239 13-440-47-603-61-164-205-303-433-418zm-17 145 59 133a664 664 0 0 1 262 188c55 72 100 150 134 234 27 97 40 181 41 253 0 71-3 140-9 205-7 65-11 131-13 199-2 67 9 145 32 234H621c-4-84 12-158 48-223s85-124 146-177c78-22 129-56 152-102s53-90 90-131c13-10 27-15 38-15 10-1 21 0 33-2 52-7 95-36 129-85 33-49 51-104 52-165l-19-67c-37 159-99 245-188 257l-45 6c-16 1-33 10-52 26-41-25-87-35-138-31q-111 9-165 27l-108 73-39 45-47-28 78-65-138-144-64 41-4-125 366-241c15-34 58-74 131-120l208-131zM960 564c-6 0-12 2-18 7L826 671l212 2c23 0 17-21-16-63-24-31-44-46-62-46M502 868l-33 4-33 56 57 26 46-55z"
|
|
12
12
|
/>
|
|
13
13
|
</svg>
|
|
14
14
|
);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgWP = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048" {...props}>
|
|
5
5
|
<path
|
|
6
|
-
fill=
|
|
7
|
-
d=
|
|
6
|
+
fill="#f9f9f9"
|
|
7
|
+
d="m734 981 196-193s-189-82-79-288c79-149 303-114 361 50 63 179-113 240-113 240l226 197Zm-235 799s-8-107 50-154c196-173 338-386 371-599l210 2c33 206 182 447 321 561 101 59 99 199 99 199z"
|
|
8
8
|
/>
|
|
9
9
|
<path
|
|
10
|
-
fill=
|
|
11
|
-
d=
|
|
10
|
+
fill="#101010"
|
|
11
|
+
d="M520 1769h1008q8-97-132-182-132-101-196-239t-80-309H928q-15 170-79 309t-197 239q-141 85-132 182m504 74H446v-74q-4-80 42-137t125-108q117-91 172-217t78-268H576l284-239q-86-74-86-188 0-103 73-177t177-74q103 0 177 74t73 177q0 114-86 188l284 239h-287q23 141 78 268t172 217q79 51 125 108t42 137v74zM756 974h536l-225-191q134-31 134-171 0-76-52-126t-125-51q-73 0-125 51t-52 126q0 140 134 171z"
|
|
12
12
|
/>
|
|
13
13
|
</svg>
|
|
14
14
|
);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgWQ = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048" {...props}>
|
|
5
5
|
<path
|
|
6
|
-
fill=
|
|
7
|
-
d=
|
|
6
|
+
fill="#f9f9f9"
|
|
7
|
+
d="m508.5 1815.6 48.4-356.7-216.3-554.6-135.8-20.7-16.1-126.5 112.7-43.8 78.3 73.7-18.4 99 246.2 197.8 112.8-568.3L635 428l78.3-108 112.8 43.7-23 161 223.2 474 244-490-66.8-105.9 92-92 105.9 73.6L1337 534l103.5 529.2 260-161-16-142.7 131-46 57.6 131.1-207 103.6-175 529.2 48.4 308.4z"
|
|
8
8
|
/>
|
|
9
9
|
<path
|
|
10
|
-
fill=
|
|
11
|
-
d=
|
|
10
|
+
fill="#101010"
|
|
11
|
+
d="M1024 1769h478q-53-130-43-280-100-39-213-67.5t-222-28.5q-110 0-223 28.5T589 1489q9 150-43 280zm0-450q111 0 223.5 26.5T1468 1413q17-105 60.5-212.5T1634 988l-220 155-123-601-267 555-267-555-123 601-220-155q61 105 104.5 212.5T580 1413q108-41 220.5-67.5T1024 1319m0 524H441q114-231 57.5-456.5T296 937q-12 2-19 2-54 0-92.5-38.5T146 808t38.5-92.5T277 677t92.5 38.5T408 808q0 20-6 38-4 14-15 33l196 139 100-486q-64-31-72-103-5-44 29-91t88-53q54-5 96 29t48 88q7 68-46 114l198 412 198-412q-54-46-46-114 6-54 48-88t96-29q54 6 87.5 53t29.5 91q-9 72-72 103l100 486 196-139q-12-19-15-33-6-18-6-38 0-54 38.5-92.5T1771 677t92.5 38.5T1902 808t-38.5 92.5T1771 939q-7 0-19-2-147 224-203 449.5t58 456.5zM276 746q-62 0-62 62t62 62q63 0 63-62t-63-62m466-394q-62 0-62 62t62 62 62-62-62-62M590 1519l119 72-134 86q19-86 15-158m1182-773q-63 0-63 62t63 62q62 0 62-62t-62-62m-466-394q-62 0-62 62t62 62 62-62-62-62m152 1167-119 72 134 86q-20-86-15-158m-573 47 139-83 139 86-139 84z"
|
|
12
12
|
/>
|
|
13
13
|
</svg>
|
|
14
14
|
);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgWR = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048" {...props}>
|
|
5
5
|
<path
|
|
6
|
-
fill=
|
|
7
|
-
d=
|
|
6
|
+
fill="#f9f9f9"
|
|
7
|
+
d="m435 1804 16-212 152-115 51-688-148-115-7-276 210-2 4 138 198 2 7-140 212-3 14 145 193-4 5-138h204l-7 285-145 106 42 693 172 124 19 207z"
|
|
8
8
|
/>
|
|
9
9
|
<path
|
|
10
|
-
fill=
|
|
11
|
-
d=
|
|
10
|
+
fill="#101010"
|
|
11
|
+
d="M1024 1501H643l5-74h752l5 74zm0-661H692l5-74h654l5 74zm0 1003H383l29-264 159-118 50-659-149-107-17-341h289v147h137V354h286v147h137V354h289l-17 341-149 107 50 659 159 118 29 264zm0-74h557l-15-149-161-119-54-735 152-109 13-230h-138v148h-285V427H955v148H670V427H532l13 230 152 109-54 735-161 119-15 149z"
|
|
12
12
|
/>
|
|
13
13
|
</svg>
|
|
14
14
|
);
|
|
@@ -1,14 +1,25 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgBB = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
5
|
-
<g
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
|
+
<g
|
|
6
|
+
fill="none"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
stroke="#000"
|
|
9
|
+
strokeLinecap="round"
|
|
10
|
+
strokeLinejoin="round"
|
|
11
|
+
strokeWidth={1.5}
|
|
12
|
+
>
|
|
13
|
+
<g fill="#000" strokeLinecap="butt">
|
|
14
|
+
<path d="M9 36c3.4-1 10.1.4 13.5-2 3.4 2.4 10.1 1 13.5 2 0 0 1.6.5 3 2-.7 1-1.6 1-3 .5-3.4-1-10.1.5-13.5-1-3.4 1.5-10.1 0-13.5 1-1.4.5-2.3.5-3-.5 1.4-2 3-2 3-2z" />
|
|
15
|
+
<path d="M15 32c2.5 2.5 12.5 2.5 15 0 .5-1.5 0-2 0-2 0-2.5-2.5-4-2.5-4 5.5-1.5 6-11.5-5-15.5-11 4-10.5 14-5 15.5 0 0-2.5 1.5-2.5 4 0 0-.5.5 0 2z" />
|
|
16
|
+
<path d="M25 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 1 1 5 0z" />
|
|
10
17
|
</g>
|
|
11
|
-
<path
|
|
18
|
+
<path
|
|
19
|
+
stroke="#ececec"
|
|
20
|
+
strokeLinejoin="miter"
|
|
21
|
+
d="M17.5 26h10M15 30h15m-7.5-14.5v5M20 18h5"
|
|
22
|
+
/>
|
|
12
23
|
</g>
|
|
13
24
|
</svg>
|
|
14
25
|
);
|
|
@@ -1,25 +1,35 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgBK = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
5
|
-
<g
|
|
6
|
-
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
|
+
<g
|
|
6
|
+
fill="none"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
stroke="#000"
|
|
9
|
+
strokeLinecap="round"
|
|
10
|
+
strokeLinejoin="round"
|
|
11
|
+
strokeWidth={1.5}
|
|
12
|
+
>
|
|
13
|
+
<path strokeLinejoin="miter" d="M22.5 11.6V6" />
|
|
7
14
|
<path
|
|
8
|
-
fill=
|
|
9
|
-
strokeLinecap=
|
|
10
|
-
strokeLinejoin=
|
|
11
|
-
d=
|
|
15
|
+
fill="#000"
|
|
16
|
+
strokeLinecap="butt"
|
|
17
|
+
strokeLinejoin="miter"
|
|
18
|
+
d="M22.5 25s4.5-7.5 3-10.5c0 0-1-2.5-3-2.5s-3 2.5-3 2.5c-1.5 3 3 10.5 3 10.5"
|
|
12
19
|
/>
|
|
13
20
|
<path
|
|
14
|
-
fill=
|
|
15
|
-
d=
|
|
21
|
+
fill="#000"
|
|
22
|
+
d="M11.5 37a22.3 22.3 0 0 0 21 0v-7s9-4.5 6-10.5c-4-6.5-13.5-3.5-16 4V27v-3.5c-3.5-7.5-13-10.5-16-4-3 6 5 10 5 10z"
|
|
16
23
|
/>
|
|
17
|
-
<path strokeLinejoin=
|
|
24
|
+
<path strokeLinejoin="miter" d="M20 8h5" />
|
|
18
25
|
<path
|
|
19
|
-
stroke=
|
|
20
|
-
d=
|
|
26
|
+
stroke="#ececec"
|
|
27
|
+
d="M32 29.5s8.5-4 6-9.7C34.1 14 25 18 22.5 24.6v2.1-2.1C20 18 9.9 14 7 19.9c-2.5 5.6 4.8 9 4.8 9"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
stroke="#ececec"
|
|
31
|
+
d="M11.5 30c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0"
|
|
21
32
|
/>
|
|
22
|
-
<path stroke='#ececec' d='M11.5 30c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0' />
|
|
23
33
|
</g>
|
|
24
34
|
</svg>
|
|
25
35
|
);
|
|
@@ -1,22 +1,29 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgBN = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
5
|
-
<g
|
|
6
|
-
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
|
+
<g
|
|
6
|
+
fill="none"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
stroke="#000"
|
|
9
|
+
strokeLinecap="round"
|
|
10
|
+
strokeLinejoin="round"
|
|
11
|
+
strokeWidth={1.5}
|
|
12
|
+
>
|
|
13
|
+
<path fill="#000" d="M22 10c10.5 1 16.5 8 16 29H15c0-9 10-6.5 8-21" />
|
|
7
14
|
<path
|
|
8
|
-
fill=
|
|
9
|
-
d=
|
|
15
|
+
fill="#000"
|
|
16
|
+
d="M24 18c.38 2.91-5.55 7.37-8 9-3 2-2.82 4.34-5 4-1.04-.94 1.41-3.04 0-3-1 0 .19 1.23-1 2-1 0-4 1-4-4 0-2 6-12 6-12s1.89-1.9 2-3.5c-.73-1-.5-2-.5-3 1-1 3 2.5 3 2.5h2s.78-2 2.5-3c1 0 1 3 1 3"
|
|
10
17
|
/>
|
|
11
18
|
<path
|
|
12
|
-
fill=
|
|
13
|
-
stroke=
|
|
14
|
-
d=
|
|
19
|
+
fill="#ececec"
|
|
20
|
+
stroke="#ececec"
|
|
21
|
+
d="M9.5 25.5a.5.5 0 1 1-1 0 .5.5 0 1 1 1 0m5.43-9.75a.5 1.5 30 1 1-.86-.5.5 1.5 30 1 1 .86.5"
|
|
15
22
|
/>
|
|
16
23
|
<path
|
|
17
|
-
fill=
|
|
18
|
-
stroke=
|
|
19
|
-
d=
|
|
24
|
+
fill="#ececec"
|
|
25
|
+
stroke="none"
|
|
26
|
+
d="m24.55 10.4-.45 1.45.5.15c3.15 1 5.65 2.49 7.9 6.75S35.75 29.06 35.25 39l-.05.5h2.25l.05-.5c.5-10.06-.88-16.85-3.25-21.34s-5.79-6.64-9.19-7.16z"
|
|
20
27
|
/>
|
|
21
28
|
</g>
|
|
22
29
|
</svg>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgBP = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
5
|
<path
|
|
6
|
-
stroke=
|
|
7
|
-
strokeLinecap=
|
|
6
|
+
stroke="#000"
|
|
7
|
+
strokeLinecap="round"
|
|
8
8
|
strokeWidth={1.5}
|
|
9
|
-
d=
|
|
9
|
+
d="M22.5 9a4 4 0 0 0-3.22 6.38 6.48 6.48 0 0 0-.87 10.65c-3 1.06-7.41 5.55-7.41 13.47h23c0-7.92-4.41-12.41-7.41-13.47a6.46 6.46 0 0 0-.87-10.65A4.01 4.01 0 0 0 22.5 9z"
|
|
10
10
|
/>
|
|
11
11
|
</svg>
|
|
12
12
|
);
|
|
@@ -1,9 +1,15 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgBQ = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
5
|
-
<g
|
|
6
|
-
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
|
+
<g
|
|
6
|
+
fillRule="evenodd"
|
|
7
|
+
stroke="#000"
|
|
8
|
+
strokeLinecap="round"
|
|
9
|
+
strokeLinejoin="round"
|
|
10
|
+
strokeWidth={1.5}
|
|
11
|
+
>
|
|
12
|
+
<g stroke="none">
|
|
7
13
|
<circle cx={6} cy={12} r={2.75} />
|
|
8
14
|
<circle cx={14} cy={9} r={2.75} />
|
|
9
15
|
<circle cx={22.5} cy={8} r={2.75} />
|
|
@@ -11,18 +17,18 @@ const SvgBQ = (props: SVGProps<SVGSVGElement>) => (
|
|
|
11
17
|
<circle cx={39} cy={12} r={2.75} />
|
|
12
18
|
</g>
|
|
13
19
|
<path
|
|
14
|
-
strokeLinecap=
|
|
15
|
-
d=
|
|
20
|
+
strokeLinecap="butt"
|
|
21
|
+
d="M9 26c8.5-1.5 21-1.5 27 0l2.5-12.5L31 25l-.3-14.1-5.2 13.6-3-14.5-3 14.5-5.2-13.6L14 25 6.5 13.5z"
|
|
16
22
|
/>
|
|
17
23
|
<path
|
|
18
|
-
strokeLinecap=
|
|
19
|
-
d=
|
|
24
|
+
strokeLinecap="butt"
|
|
25
|
+
d="M9 26c0 2 1.5 2 2.5 4 1 1.5 1 1 .5 3.5-1.5 1-1.5 2.5-1.5 2.5-1.5 1.5.5 2.5.5 2.5 6.5 1 16.5 1 23 0 0 0 1.5-1 0-2.5 0 0 .5-1.5-1-2.5-.5-2.5-.5-2 .5-3.5 1-2 2.5-2 2.5-4-8.5-1.5-18.5-1.5-27 0z"
|
|
20
26
|
/>
|
|
21
|
-
<path fill=
|
|
27
|
+
<path fill="none" strokeLinecap="butt" d="M11 38.5a35 35 1 0 0 23 0" />
|
|
22
28
|
<path
|
|
23
|
-
fill=
|
|
24
|
-
stroke=
|
|
25
|
-
d=
|
|
29
|
+
fill="none"
|
|
30
|
+
stroke="#ececec"
|
|
31
|
+
d="M11 29a35 35 1 0 1 23 0m-21.5 2.5h20m-21 3a35 35 1 0 0 22 0m-23 3a35 35 1 0 0 24 0"
|
|
26
32
|
/>
|
|
27
33
|
</g>
|
|
28
34
|
</svg>
|
|
@@ -1,17 +1,33 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgBR = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
5
|
-
<g
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
|
+
<g
|
|
6
|
+
fillRule="evenodd"
|
|
7
|
+
stroke="#000"
|
|
8
|
+
strokeLinecap="round"
|
|
9
|
+
strokeLinejoin="round"
|
|
10
|
+
strokeWidth={1.5}
|
|
11
|
+
>
|
|
9
12
|
<path
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
strokeLinecap="butt"
|
|
14
|
+
d="M9 39h27v-3H9zm3.5-7 1.5-2.5h17l1.5 2.5zm-.5 4v-4h21v4z"
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
strokeLinecap="butt"
|
|
18
|
+
strokeLinejoin="miter"
|
|
19
|
+
d="M14 29.5v-13h17v13z"
|
|
20
|
+
/>
|
|
21
|
+
<path
|
|
22
|
+
strokeLinecap="butt"
|
|
23
|
+
d="M14 16.5 11 14h23l-3 2.5zM11 14V9h4v2h5V9h5v2h5V9h4v5z"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
fill="none"
|
|
27
|
+
stroke="#ececec"
|
|
28
|
+
strokeLinejoin="miter"
|
|
13
29
|
strokeWidth={1}
|
|
14
|
-
d=
|
|
30
|
+
d="M12 35.5h21m-20-4h19m-18-2h17m-17-13h17M11 14h23"
|
|
15
31
|
/>
|
|
16
32
|
</g>
|
|
17
33
|
</svg>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { default as BB } from
|
|
2
|
-
export { default as BK } from
|
|
3
|
-
export { default as BN } from
|
|
4
|
-
export { default as BP } from
|
|
5
|
-
export { default as BQ } from
|
|
6
|
-
export { default as BR } from
|
|
7
|
-
export { default as WB } from
|
|
8
|
-
export { default as WK } from
|
|
9
|
-
export { default as WN } from
|
|
10
|
-
export { default as WP } from
|
|
11
|
-
export { default as WQ } from
|
|
12
|
-
export { default as WR } from
|
|
1
|
+
export { default as BB } from "./bB";
|
|
2
|
+
export { default as BK } from "./bK";
|
|
3
|
+
export { default as BN } from "./bN";
|
|
4
|
+
export { default as BP } from "./bP";
|
|
5
|
+
export { default as BQ } from "./bQ";
|
|
6
|
+
export { default as BR } from "./bR";
|
|
7
|
+
export { default as WB } from "./wB";
|
|
8
|
+
export { default as WK } from "./wK";
|
|
9
|
+
export { default as WN } from "./wN";
|
|
10
|
+
export { default as WP } from "./wP";
|
|
11
|
+
export { default as WQ } from "./wQ";
|
|
12
|
+
export { default as WR } from "./wR";
|
|
@@ -1,14 +1,24 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgWB = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
5
|
-
<g
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
|
+
<g
|
|
6
|
+
fill="none"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
stroke="#000"
|
|
9
|
+
strokeLinecap="round"
|
|
10
|
+
strokeLinejoin="round"
|
|
11
|
+
strokeWidth={1.5}
|
|
12
|
+
>
|
|
13
|
+
<g fill="#fff" strokeLinecap="butt">
|
|
14
|
+
<path d="M9 36c3.39-.97 10.11.43 13.5-2 3.39 2.43 10.11 1.03 13.5 2 0 0 1.65.54 3 2-.68.97-1.65.99-3 .5-3.39-.97-10.11.46-13.5-1-3.39 1.46-10.11.03-13.5 1-1.35.49-2.32.47-3-.5 1.35-1.94 3-2 3-2z" />
|
|
15
|
+
<path d="M15 32c2.5 2.5 12.5 2.5 15 0 .5-1.5 0-2 0-2 0-2.5-2.5-4-2.5-4 5.5-1.5 6-11.5-5-15.5-11 4-10.5 14-5 15.5 0 0-2.5 1.5-2.5 4 0 0-.5.5 0 2z" />
|
|
16
|
+
<path d="M25 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 1 1 5 0z" />
|
|
10
17
|
</g>
|
|
11
|
-
<path
|
|
18
|
+
<path
|
|
19
|
+
strokeLinejoin="miter"
|
|
20
|
+
d="M17.5 26h10M15 30h15m-7.5-14.5v5M20 18h5"
|
|
21
|
+
/>
|
|
12
22
|
</g>
|
|
13
23
|
</svg>
|
|
14
24
|
);
|
|
@@ -1,20 +1,27 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgWK = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
5
|
-
<g
|
|
6
|
-
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
|
+
<g
|
|
6
|
+
fill="none"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
stroke="#000"
|
|
9
|
+
strokeLinecap="round"
|
|
10
|
+
strokeLinejoin="round"
|
|
11
|
+
strokeWidth={1.5}
|
|
12
|
+
>
|
|
13
|
+
<path strokeLinejoin="miter" d="M22.5 11.63V6M20 8h5" />
|
|
7
14
|
<path
|
|
8
|
-
fill=
|
|
9
|
-
strokeLinecap=
|
|
10
|
-
strokeLinejoin=
|
|
11
|
-
d=
|
|
15
|
+
fill="#fff"
|
|
16
|
+
strokeLinecap="butt"
|
|
17
|
+
strokeLinejoin="miter"
|
|
18
|
+
d="M22.5 25s4.5-7.5 3-10.5c0 0-1-2.5-3-2.5s-3 2.5-3 2.5c-1.5 3 3 10.5 3 10.5"
|
|
12
19
|
/>
|
|
13
20
|
<path
|
|
14
|
-
fill=
|
|
15
|
-
d=
|
|
21
|
+
fill="#fff"
|
|
22
|
+
d="M11.5 37c5.5 3.5 15.5 3.5 21 0v-7s9-4.5 6-10.5c-4-6.5-13.5-3.5-16 4V27v-3.5c-3.5-7.5-13-10.5-16-4-3 6 5 10 5 10z"
|
|
16
23
|
/>
|
|
17
|
-
<path d=
|
|
24
|
+
<path d="M11.5 30c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0" />
|
|
18
25
|
</g>
|
|
19
26
|
</svg>
|
|
20
27
|
);
|
|
@@ -1,16 +1,23 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgWN = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
5
|
-
<g
|
|
6
|
-
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
|
+
<g
|
|
6
|
+
fill="none"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
stroke="#000"
|
|
9
|
+
strokeLinecap="round"
|
|
10
|
+
strokeLinejoin="round"
|
|
11
|
+
strokeWidth={1.5}
|
|
12
|
+
>
|
|
13
|
+
<path fill="#fff" d="M22 10c10.5 1 16.5 8 16 29H15c0-9 10-6.5 8-21" />
|
|
7
14
|
<path
|
|
8
|
-
fill=
|
|
9
|
-
d=
|
|
15
|
+
fill="#fff"
|
|
16
|
+
d="M24 18c.38 2.91-5.55 7.37-8 9-3 2-2.82 4.34-5 4-1.042-.94 1.41-3.04 0-3-1 0 .19 1.23-1 2-1 0-4.003 1-4-4 0-2 6-12 6-12s1.89-1.9 2-3.5c-.73-.994-.5-2-.5-3 1-1 3 2.5 3 2.5h2s.78-1.992 2.5-3c1 0 1 3 1 3"
|
|
10
17
|
/>
|
|
11
18
|
<path
|
|
12
|
-
fill=
|
|
13
|
-
d=
|
|
19
|
+
fill="#000"
|
|
20
|
+
d="M9.5 25.5a.5.5 0 1 1-1 0 .5.5 0 1 1 1 0m5.433-9.75a.5 1.5 30 1 1-.866-.5.5 1.5 30 1 1 .866.5"
|
|
14
21
|
/>
|
|
15
22
|
</g>
|
|
16
23
|
</svg>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgWP = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
5
|
<path
|
|
6
|
-
fill=
|
|
7
|
-
stroke=
|
|
8
|
-
strokeLinecap=
|
|
6
|
+
fill="#fff"
|
|
7
|
+
stroke="#000"
|
|
8
|
+
strokeLinecap="round"
|
|
9
9
|
strokeWidth={1.5}
|
|
10
|
-
d=
|
|
10
|
+
d="M22.5 9c-2.21 0-4 1.79-4 4 0 .89.29 1.71.78 2.38C17.33 16.5 16 18.59 16 21c0 2.03.94 3.84 2.41 5.03-3 1.06-7.41 5.55-7.41 13.47h23c0-7.92-4.41-12.41-7.41-13.47 1.47-1.19 2.41-3 2.41-5.03 0-2.41-1.33-4.5-3.28-5.62.49-.67.78-1.49.78-2.38 0-2.21-1.79-4-4-4z"
|
|
11
11
|
/>
|
|
12
12
|
</svg>
|
|
13
13
|
);
|
|
@@ -1,15 +1,25 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgWQ = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
5
|
-
<g
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
|
+
<g
|
|
6
|
+
fill="#fff"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
stroke="#000"
|
|
9
|
+
strokeLinecap="round"
|
|
10
|
+
strokeLinejoin="round"
|
|
11
|
+
strokeWidth={1.5}
|
|
12
|
+
>
|
|
13
|
+
<path d="M8 12a2 2 0 1 1-4 0 2 2 0 1 1 4 0m16.5-4.5a2 2 0 1 1-4 0 2 2 0 1 1 4 0M41 12a2 2 0 1 1-4 0 2 2 0 1 1 4 0M16 8.5a2 2 0 1 1-4 0 2 2 0 1 1 4 0M33 9a2 2 0 1 1-4 0 2 2 0 1 1 4 0" />
|
|
8
14
|
<path
|
|
9
|
-
strokeLinecap=
|
|
10
|
-
d=
|
|
15
|
+
strokeLinecap="butt"
|
|
16
|
+
d="M9 26c8.5-1.5 21-1.5 27 0l2-12-7 11V11l-5.5 13.5-3-15-3 15-5.5-14V25L7 14z"
|
|
11
17
|
/>
|
|
12
|
-
<path
|
|
18
|
+
<path
|
|
19
|
+
strokeLinecap="butt"
|
|
20
|
+
d="M9 26c0 2 1.5 2 2.5 4 1 1.5 1 1 .5 3.5-1.5 1-1.5 2.5-1.5 2.5-1.5 1.5.5 2.5.5 2.5 6.5 1 16.5 1 23 0 0 0 1.5-1 0-2.5 0 0 .5-1.5-1-2.5-.5-2.5-.5-2 .5-3.5 1-2 2.5-2 2.5-4-8.5-1.5-18.5-1.5-27 0z"
|
|
21
|
+
/>
|
|
22
|
+
<path fill="none" d="M11.5 30c3.5-1 18.5-1 22 0M12 33.5c6-1 15-1 21 0" />
|
|
13
23
|
</g>
|
|
14
24
|
</svg>
|
|
15
25
|
);
|
|
@@ -1,13 +1,23 @@
|
|
|
1
|
-
import * as React from
|
|
2
|
-
import type { SVGProps } from
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
3
|
const SvgWR = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
-
<svg xmlns=
|
|
5
|
-
<g
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" {...props}>
|
|
5
|
+
<g
|
|
6
|
+
fill="#fff"
|
|
7
|
+
fillRule="evenodd"
|
|
8
|
+
stroke="#000"
|
|
9
|
+
strokeLinecap="round"
|
|
10
|
+
strokeLinejoin="round"
|
|
11
|
+
strokeWidth={1.5}
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
strokeLinecap="butt"
|
|
15
|
+
d="M9 39h27v-3H9zm3-3v-4h21v4zm-1-22V9h4v2h5V9h5v2h5V9h4v5"
|
|
16
|
+
/>
|
|
17
|
+
<path d="m34 14-3 3H14l-3-3" />
|
|
18
|
+
<path strokeLinecap="butt" strokeLinejoin="miter" d="M31 17v12.5H14V17" />
|
|
19
|
+
<path d="m31 29.5 1.5 2.5h-20l1.5-2.5" />
|
|
20
|
+
<path fill="none" strokeLinejoin="miter" d="M11 14h23" />
|
|
11
21
|
</g>
|
|
12
22
|
</svg>
|
|
13
23
|
);
|