doclific 0.1.0
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/.gitattributes +2 -0
- package/.prettierignore +5 -0
- package/.prettierrc +9 -0
- package/.vscode/settings.json +13 -0
- package/dist/bin/doclific.d.ts +3 -0
- package/dist/bin/doclific.d.ts.map +1 -0
- package/dist/bin/doclific.js +11 -0
- package/dist/core/codebase.js +31 -0
- package/dist/core/docs.js +75 -0
- package/dist/core/git.js +47 -0
- package/dist/server/index.d.ts +2 -0
- package/dist/server/index.d.ts.map +1 -0
- package/dist/server/index.js +46 -0
- package/dist/server/router.d.ts +9 -0
- package/dist/server/router.d.ts.map +1 -0
- package/dist/server/router.js +55 -0
- package/frontend/README.md +73 -0
- package/frontend/components.json +24 -0
- package/frontend/eslint.config.js +23 -0
- package/frontend/index.html +25 -0
- package/frontend/package-lock.json +15754 -0
- package/frontend/package.json +122 -0
- package/frontend/public/logo.svg +1 -0
- package/frontend/src/App.tsx +21 -0
- package/frontend/src/components/app-sidebar.tsx +393 -0
- package/frontend/src/components/editor/editor-base-kit.tsx +43 -0
- package/frontend/src/components/editor/editor-kit.tsx +93 -0
- package/frontend/src/components/editor/plugins/align-base-kit.tsx +16 -0
- package/frontend/src/components/editor/plugins/align-kit.tsx +18 -0
- package/frontend/src/components/editor/plugins/autoformat-kit.tsx +236 -0
- package/frontend/src/components/editor/plugins/basic-blocks-base-kit.tsx +35 -0
- package/frontend/src/components/editor/plugins/basic-blocks-kit.tsx +88 -0
- package/frontend/src/components/editor/plugins/basic-marks-base-kit.tsx +27 -0
- package/frontend/src/components/editor/plugins/basic-marks-kit.tsx +41 -0
- package/frontend/src/components/editor/plugins/basic-nodes-kit.tsx +6 -0
- package/frontend/src/components/editor/plugins/block-menu-kit.tsx +14 -0
- package/frontend/src/components/editor/plugins/block-placeholder-kit.tsx +17 -0
- package/frontend/src/components/editor/plugins/block-selection-kit.tsx +32 -0
- package/frontend/src/components/editor/plugins/callout-base-kit.tsx +7 -0
- package/frontend/src/components/editor/plugins/callout-kit.tsx +7 -0
- package/frontend/src/components/editor/plugins/code-block-base-kit.tsx +23 -0
- package/frontend/src/components/editor/plugins/code-block-kit.tsx +26 -0
- package/frontend/src/components/editor/plugins/codebase-kit.tsx +23 -0
- package/frontend/src/components/editor/plugins/column-base-kit.tsx +11 -0
- package/frontend/src/components/editor/plugins/column-kit.tsx +10 -0
- package/frontend/src/components/editor/plugins/comment-base-kit.tsx +7 -0
- package/frontend/src/components/editor/plugins/comment-kit.tsx +97 -0
- package/frontend/src/components/editor/plugins/cursor-overlay-kit.tsx +13 -0
- package/frontend/src/components/editor/plugins/date-base-kit.tsx +5 -0
- package/frontend/src/components/editor/plugins/date-kit.tsx +7 -0
- package/frontend/src/components/editor/plugins/discussion-kit.tsx +148 -0
- package/frontend/src/components/editor/plugins/dnd-kit.tsx +28 -0
- package/frontend/src/components/editor/plugins/docx-kit.tsx +6 -0
- package/frontend/src/components/editor/plugins/emoji-kit.tsx +13 -0
- package/frontend/src/components/editor/plugins/excalidraw-kit.tsx +9 -0
- package/frontend/src/components/editor/plugins/exit-break-kit.tsx +12 -0
- package/frontend/src/components/editor/plugins/floating-toolbar-kit.tsx +19 -0
- package/frontend/src/components/editor/plugins/font-base-kit.tsx +20 -0
- package/frontend/src/components/editor/plugins/font-kit.tsx +29 -0
- package/frontend/src/components/editor/plugins/indent-base-kit.tsx +19 -0
- package/frontend/src/components/editor/plugins/indent-kit.tsx +22 -0
- package/frontend/src/components/editor/plugins/line-height-base-kit.tsx +14 -0
- package/frontend/src/components/editor/plugins/line-height-kit.tsx +16 -0
- package/frontend/src/components/editor/plugins/link-base-kit.tsx +5 -0
- package/frontend/src/components/editor/plugins/link-kit.tsx +15 -0
- package/frontend/src/components/editor/plugins/list-base-kit.tsx +23 -0
- package/frontend/src/components/editor/plugins/list-kit.tsx +26 -0
- package/frontend/src/components/editor/plugins/markdown-kit.tsx +46 -0
- package/frontend/src/components/editor/plugins/math-base-kit.tsx +11 -0
- package/frontend/src/components/editor/plugins/math-kit.tsx +13 -0
- package/frontend/src/components/editor/plugins/media-base-kit.tsx +31 -0
- package/frontend/src/components/editor/plugins/media-kit.tsx +43 -0
- package/frontend/src/components/editor/plugins/mention-base-kit.tsx +7 -0
- package/frontend/src/components/editor/plugins/mention-kit.tsx +15 -0
- package/frontend/src/components/editor/plugins/slash-kit.tsx +18 -0
- package/frontend/src/components/editor/plugins/suggestion-base-kit.tsx +7 -0
- package/frontend/src/components/editor/plugins/suggestion-kit.tsx +90 -0
- package/frontend/src/components/editor/plugins/table-base-kit.tsx +20 -0
- package/frontend/src/components/editor/plugins/table-kit.tsx +22 -0
- package/frontend/src/components/editor/plugins/toc-base-kit.tsx +5 -0
- package/frontend/src/components/editor/plugins/toc-kit.tsx +14 -0
- package/frontend/src/components/editor/plugins/toggle-base-kit.tsx +7 -0
- package/frontend/src/components/editor/plugins/toggle-kit.tsx +11 -0
- package/frontend/src/components/editor/transforms.ts +194 -0
- package/frontend/src/components/markdown-to-slate-demo.tsx +50 -0
- package/frontend/src/components/mode-toggle.tsx +15 -0
- package/frontend/src/components/theme-provider.tsx +73 -0
- package/frontend/src/components/ui/alert-dialog.tsx +155 -0
- package/frontend/src/components/ui/align-toolbar-button.tsx +84 -0
- package/frontend/src/components/ui/avatar.tsx +51 -0
- package/frontend/src/components/ui/block-context-menu.tsx +199 -0
- package/frontend/src/components/ui/block-discussion.tsx +365 -0
- package/frontend/src/components/ui/block-draggable.tsx +512 -0
- package/frontend/src/components/ui/block-list-static.tsx +80 -0
- package/frontend/src/components/ui/block-list.tsx +87 -0
- package/frontend/src/components/ui/block-selection.tsx +42 -0
- package/frontend/src/components/ui/block-suggestion.tsx +473 -0
- package/frontend/src/components/ui/blockquote-node-static.tsx +11 -0
- package/frontend/src/components/ui/blockquote-node.tsx +13 -0
- package/frontend/src/components/ui/button.tsx +62 -0
- package/frontend/src/components/ui/calendar.tsx +218 -0
- package/frontend/src/components/ui/callout-node-static.tsx +36 -0
- package/frontend/src/components/ui/callout-node.tsx +63 -0
- package/frontend/src/components/ui/caption.tsx +63 -0
- package/frontend/src/components/ui/checkbox.tsx +30 -0
- package/frontend/src/components/ui/code-block-node-static.tsx +35 -0
- package/frontend/src/components/ui/code-block-node.tsx +287 -0
- package/frontend/src/components/ui/code-node-static.tsx +15 -0
- package/frontend/src/components/ui/code-node.tsx +17 -0
- package/frontend/src/components/ui/codebase-snippet-node.tsx +237 -0
- package/frontend/src/components/ui/column-node-static.tsx +29 -0
- package/frontend/src/components/ui/column-node.tsx +317 -0
- package/frontend/src/components/ui/command.tsx +182 -0
- package/frontend/src/components/ui/comment-node-static.tsx +15 -0
- package/frontend/src/components/ui/comment-node.tsx +45 -0
- package/frontend/src/components/ui/comment-toolbar-button.tsx +24 -0
- package/frontend/src/components/ui/comment.tsx +618 -0
- package/frontend/src/components/ui/context-menu.tsx +250 -0
- package/frontend/src/components/ui/cursor-overlay.tsx +66 -0
- package/frontend/src/components/ui/date-node-static.tsx +45 -0
- package/frontend/src/components/ui/date-node.tsx +93 -0
- package/frontend/src/components/ui/dialog.tsx +143 -0
- package/frontend/src/components/ui/dropdown-menu.tsx +255 -0
- package/frontend/src/components/ui/dynamic-icon.tsx +12 -0
- package/frontend/src/components/ui/editor-static.tsx +53 -0
- package/frontend/src/components/ui/editor.tsx +130 -0
- package/frontend/src/components/ui/emoji-node.tsx +69 -0
- package/frontend/src/components/ui/emoji-toolbar-button.tsx +628 -0
- package/frontend/src/components/ui/equation-node-static.tsx +98 -0
- package/frontend/src/components/ui/equation-node.tsx +235 -0
- package/frontend/src/components/ui/equation-toolbar-button.tsx +25 -0
- package/frontend/src/components/ui/excalidraw-node.tsx +36 -0
- package/frontend/src/components/ui/export-toolbar-button.tsx +174 -0
- package/frontend/src/components/ui/file-selector.tsx +339 -0
- package/frontend/src/components/ui/floating-toolbar-buttons.tsx +73 -0
- package/frontend/src/components/ui/floating-toolbar.tsx +85 -0
- package/frontend/src/components/ui/font-color-toolbar-button.tsx +831 -0
- package/frontend/src/components/ui/font-size-toolbar-button.tsx +152 -0
- package/frontend/src/components/ui/heading-node-static.tsx +68 -0
- package/frontend/src/components/ui/heading-node.tsx +58 -0
- package/frontend/src/components/ui/highlight-node-static.tsx +11 -0
- package/frontend/src/components/ui/highlight-node.tsx +13 -0
- package/frontend/src/components/ui/history-toolbar-button.tsx +50 -0
- package/frontend/src/components/ui/hr-node-static.tsx +20 -0
- package/frontend/src/components/ui/hr-node.tsx +33 -0
- package/frontend/src/components/ui/import-toolbar-button.tsx +97 -0
- package/frontend/src/components/ui/indent-toolbar-button.tsx +30 -0
- package/frontend/src/components/ui/inline-combobox.tsx +414 -0
- package/frontend/src/components/ui/input.tsx +21 -0
- package/frontend/src/components/ui/insert-toolbar-button.tsx +254 -0
- package/frontend/src/components/ui/kbd-node-static.tsx +15 -0
- package/frontend/src/components/ui/kbd-node.tsx +17 -0
- package/frontend/src/components/ui/layout-header.tsx +35 -0
- package/frontend/src/components/ui/line-height-toolbar-button.tsx +68 -0
- package/frontend/src/components/ui/link-node-static.tsx +21 -0
- package/frontend/src/components/ui/link-node.tsx +39 -0
- package/frontend/src/components/ui/link-toolbar-button.tsx +22 -0
- package/frontend/src/components/ui/link-toolbar.tsx +206 -0
- package/frontend/src/components/ui/list-toolbar-button.tsx +204 -0
- package/frontend/src/components/ui/mark-toolbar-button.tsx +19 -0
- package/frontend/src/components/ui/media-audio-node-static.tsx +17 -0
- package/frontend/src/components/ui/media-audio-node.tsx +39 -0
- package/frontend/src/components/ui/media-embed-node.tsx +136 -0
- package/frontend/src/components/ui/media-file-node-static.tsx +29 -0
- package/frontend/src/components/ui/media-file-node.tsx +47 -0
- package/frontend/src/components/ui/media-image-node-static.tsx +39 -0
- package/frontend/src/components/ui/media-image-node.tsx +80 -0
- package/frontend/src/components/ui/media-placeholder-node.tsx +249 -0
- package/frontend/src/components/ui/media-preview-dialog.tsx +152 -0
- package/frontend/src/components/ui/media-toolbar-button.tsx +225 -0
- package/frontend/src/components/ui/media-toolbar.tsx +115 -0
- package/frontend/src/components/ui/media-upload-toast.tsx +66 -0
- package/frontend/src/components/ui/media-video-node-static.tsx +30 -0
- package/frontend/src/components/ui/media-video-node.tsx +121 -0
- package/frontend/src/components/ui/mention-node-static.tsx +36 -0
- package/frontend/src/components/ui/mention-node.tsx +194 -0
- package/frontend/src/components/ui/mode-toolbar-button.tsx +123 -0
- package/frontend/src/components/ui/more-toolbar-button.tsx +80 -0
- package/frontend/src/components/ui/paragraph-node-static.tsx +13 -0
- package/frontend/src/components/ui/paragraph-node.tsx +15 -0
- package/frontend/src/components/ui/popover.tsx +46 -0
- package/frontend/src/components/ui/resize-handle.tsx +87 -0
- package/frontend/src/components/ui/separator.tsx +28 -0
- package/frontend/src/components/ui/sheet.tsx +139 -0
- package/frontend/src/components/ui/sidebar.tsx +726 -0
- package/frontend/src/components/ui/skeleton.tsx +13 -0
- package/frontend/src/components/ui/slash-node.tsx +233 -0
- package/frontend/src/components/ui/sonner.tsx +38 -0
- package/frontend/src/components/ui/suggestion-node-static.tsx +35 -0
- package/frontend/src/components/ui/suggestion-node.tsx +162 -0
- package/frontend/src/components/ui/suggestion-toolbar-button.tsx +25 -0
- package/frontend/src/components/ui/table-icons.tsx +862 -0
- package/frontend/src/components/ui/table-node-static.tsx +98 -0
- package/frontend/src/components/ui/table-node.tsx +656 -0
- package/frontend/src/components/ui/table-toolbar-button.tsx +264 -0
- package/frontend/src/components/ui/toc-node-static.tsx +92 -0
- package/frontend/src/components/ui/toc-node.tsx +55 -0
- package/frontend/src/components/ui/toggle-node-static.tsx +18 -0
- package/frontend/src/components/ui/toggle-node.tsx +36 -0
- package/frontend/src/components/ui/toggle-toolbar-button.tsx +22 -0
- package/frontend/src/components/ui/toolbar.tsx +387 -0
- package/frontend/src/components/ui/tooltip.tsx +59 -0
- package/frontend/src/components/ui/turn-into-toolbar-button.tsx +188 -0
- package/frontend/src/hooks/use-debounce.ts +18 -0
- package/frontend/src/hooks/use-is-touch-device.ts +24 -0
- package/frontend/src/hooks/use-mobile.ts +19 -0
- package/frontend/src/hooks/use-mounted.ts +11 -0
- package/frontend/src/hooks/use-upload-file.ts +128 -0
- package/frontend/src/index.css +128 -0
- package/frontend/src/layout.tsx +42 -0
- package/frontend/src/lib/markdown-joiner-transform.ts +239 -0
- package/frontend/src/lib/orpc.ts +13 -0
- package/frontend/src/lib/uploadthing.ts +19 -0
- package/frontend/src/lib/utils.ts +6 -0
- package/frontend/src/main.tsx +13 -0
- package/frontend/src/pages/editor.tsx +44 -0
- package/frontend/src/types/docs.d.ts +6 -0
- package/frontend/src/types/global.d.ts +9 -0
- package/frontend/src/types/router.d.ts +4 -0
- package/frontend/tsconfig.app.json +33 -0
- package/frontend/tsconfig.json +10 -0
- package/frontend/tsconfig.node.json +26 -0
- package/frontend/vite.config.ts +14 -0
- package/package.json +30 -0
- package/src/bin/doclific.ts +17 -0
- package/src/core/codebase.ts +39 -0
- package/src/core/docs.ts +90 -0
- package/src/core/git.ts +48 -0
- package/src/server/index.ts +55 -0
- package/src/server/router.ts +65 -0
- package/tsconfig.json +15 -0
|
@@ -0,0 +1,862 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import type { LucideProps } from 'lucide-react';
|
|
4
|
+
|
|
5
|
+
export function BorderAllIcon(props: LucideProps) {
|
|
6
|
+
return (
|
|
7
|
+
<svg
|
|
8
|
+
fill="none"
|
|
9
|
+
height="15"
|
|
10
|
+
viewBox="0 0 15 15"
|
|
11
|
+
width="15"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<title>Border All</title>
|
|
16
|
+
<path
|
|
17
|
+
clipRule="evenodd"
|
|
18
|
+
d="M0.25 1C0.25 0.585786 0.585786 0.25 1 0.25H14C14.4142 0.25 14.75 0.585786 14.75 1V14C14.75 14.4142 14.4142 14.75 14 14.75H1C0.585786 14.75 0.25 14.4142 0.25 14V1ZM1.75 1.75V13.25H13.25V1.75H1.75Z"
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
fillRule="evenodd"
|
|
21
|
+
/>
|
|
22
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="5" />
|
|
23
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="3" />
|
|
24
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="7" />
|
|
25
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="5" y="7" />
|
|
26
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="3" y="7" />
|
|
27
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="9" y="7" />
|
|
28
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="11" y="7" />
|
|
29
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="9" />
|
|
30
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="11" />
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export function BorderBottomIcon(props: LucideProps) {
|
|
36
|
+
return (
|
|
37
|
+
<svg
|
|
38
|
+
fill="none"
|
|
39
|
+
height="15"
|
|
40
|
+
viewBox="0 0 15 15"
|
|
41
|
+
width="15"
|
|
42
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
43
|
+
{...props}
|
|
44
|
+
>
|
|
45
|
+
<title>Border Bottom</title>
|
|
46
|
+
<path
|
|
47
|
+
clipRule="evenodd"
|
|
48
|
+
d="M1 13.25L14 13.25V14.75L1 14.75V13.25Z"
|
|
49
|
+
fill="currentColor"
|
|
50
|
+
fillRule="evenodd"
|
|
51
|
+
/>
|
|
52
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="5" />
|
|
53
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="13" y="5" />
|
|
54
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="3" />
|
|
55
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="13" y="3" />
|
|
56
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="7" />
|
|
57
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="1" />
|
|
58
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="13" y="7" />
|
|
59
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="13" y="1" />
|
|
60
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="5" y="7" />
|
|
61
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="5" y="1" />
|
|
62
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="3" y="7" />
|
|
63
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="3" y="1" />
|
|
64
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="9" y="7" />
|
|
65
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="9" y="1" />
|
|
66
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="11" y="7" />
|
|
67
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="11" y="1" />
|
|
68
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="9" />
|
|
69
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="13" y="9" />
|
|
70
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="11" />
|
|
71
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="13" y="11" />
|
|
72
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="5" />
|
|
73
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="3" />
|
|
74
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="7" />
|
|
75
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="1" />
|
|
76
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="9" />
|
|
77
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="11" />
|
|
78
|
+
</svg>
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export function BorderLeftIcon(props: LucideProps) {
|
|
83
|
+
return (
|
|
84
|
+
<svg
|
|
85
|
+
fill="none"
|
|
86
|
+
height="15"
|
|
87
|
+
viewBox="0 0 15 15"
|
|
88
|
+
width="15"
|
|
89
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
90
|
+
{...props}
|
|
91
|
+
>
|
|
92
|
+
<title>Border Left</title>
|
|
93
|
+
<path
|
|
94
|
+
clipRule="evenodd"
|
|
95
|
+
d="M1.75 1L1.75 14L0.249999 14L0.25 1L1.75 1Z"
|
|
96
|
+
fill="currentColor"
|
|
97
|
+
fillRule="evenodd"
|
|
98
|
+
/>
|
|
99
|
+
<rect
|
|
100
|
+
fill="currentColor"
|
|
101
|
+
height="1"
|
|
102
|
+
rx=".5"
|
|
103
|
+
transform="rotate(90 10 7)"
|
|
104
|
+
width="1"
|
|
105
|
+
x="10"
|
|
106
|
+
y="7"
|
|
107
|
+
/>
|
|
108
|
+
<rect
|
|
109
|
+
fill="currentColor"
|
|
110
|
+
height="1"
|
|
111
|
+
rx=".5"
|
|
112
|
+
transform="rotate(90 10 13)"
|
|
113
|
+
width="1"
|
|
114
|
+
x="10"
|
|
115
|
+
y="13"
|
|
116
|
+
/>
|
|
117
|
+
<rect
|
|
118
|
+
fill="currentColor"
|
|
119
|
+
height="1"
|
|
120
|
+
rx=".5"
|
|
121
|
+
transform="rotate(90 12 7)"
|
|
122
|
+
width="1"
|
|
123
|
+
x="12"
|
|
124
|
+
y="7"
|
|
125
|
+
/>
|
|
126
|
+
<rect
|
|
127
|
+
fill="currentColor"
|
|
128
|
+
height="1"
|
|
129
|
+
rx=".5"
|
|
130
|
+
transform="rotate(90 12 13)"
|
|
131
|
+
width="1"
|
|
132
|
+
x="12"
|
|
133
|
+
y="13"
|
|
134
|
+
/>
|
|
135
|
+
<rect
|
|
136
|
+
fill="currentColor"
|
|
137
|
+
height="1"
|
|
138
|
+
rx=".5"
|
|
139
|
+
transform="rotate(90 8 7)"
|
|
140
|
+
width="1"
|
|
141
|
+
x="8"
|
|
142
|
+
y="7"
|
|
143
|
+
/>
|
|
144
|
+
<rect
|
|
145
|
+
fill="currentColor"
|
|
146
|
+
height="1"
|
|
147
|
+
rx=".5"
|
|
148
|
+
transform="rotate(90 14 7)"
|
|
149
|
+
width="1"
|
|
150
|
+
x="14"
|
|
151
|
+
y="7"
|
|
152
|
+
/>
|
|
153
|
+
<rect
|
|
154
|
+
fill="currentColor"
|
|
155
|
+
height="1"
|
|
156
|
+
rx=".5"
|
|
157
|
+
transform="rotate(90 8 13)"
|
|
158
|
+
width="1"
|
|
159
|
+
x="8"
|
|
160
|
+
y="13"
|
|
161
|
+
/>
|
|
162
|
+
<rect
|
|
163
|
+
fill="currentColor"
|
|
164
|
+
height="1"
|
|
165
|
+
rx=".5"
|
|
166
|
+
transform="rotate(90 14 13)"
|
|
167
|
+
width="1"
|
|
168
|
+
x="14"
|
|
169
|
+
y="13"
|
|
170
|
+
/>
|
|
171
|
+
<rect
|
|
172
|
+
fill="currentColor"
|
|
173
|
+
height="1"
|
|
174
|
+
rx=".5"
|
|
175
|
+
transform="rotate(90 8 5)"
|
|
176
|
+
width="1"
|
|
177
|
+
x="8"
|
|
178
|
+
y="5"
|
|
179
|
+
/>
|
|
180
|
+
<rect
|
|
181
|
+
fill="currentColor"
|
|
182
|
+
height="1"
|
|
183
|
+
rx=".5"
|
|
184
|
+
transform="rotate(90 14 5)"
|
|
185
|
+
width="1"
|
|
186
|
+
x="14"
|
|
187
|
+
y="5"
|
|
188
|
+
/>
|
|
189
|
+
<rect
|
|
190
|
+
fill="currentColor"
|
|
191
|
+
height="1"
|
|
192
|
+
rx=".5"
|
|
193
|
+
transform="rotate(90 8 3)"
|
|
194
|
+
width="1"
|
|
195
|
+
x="8"
|
|
196
|
+
y="3"
|
|
197
|
+
/>
|
|
198
|
+
<rect
|
|
199
|
+
fill="currentColor"
|
|
200
|
+
height="1"
|
|
201
|
+
rx=".5"
|
|
202
|
+
transform="rotate(90 14 3)"
|
|
203
|
+
width="1"
|
|
204
|
+
x="14"
|
|
205
|
+
y="3"
|
|
206
|
+
/>
|
|
207
|
+
<rect
|
|
208
|
+
fill="currentColor"
|
|
209
|
+
height="1"
|
|
210
|
+
rx=".5"
|
|
211
|
+
transform="rotate(90 8 9)"
|
|
212
|
+
width="1"
|
|
213
|
+
x="8"
|
|
214
|
+
y="9"
|
|
215
|
+
/>
|
|
216
|
+
<rect
|
|
217
|
+
fill="currentColor"
|
|
218
|
+
height="1"
|
|
219
|
+
rx=".5"
|
|
220
|
+
transform="rotate(90 14 9)"
|
|
221
|
+
width="1"
|
|
222
|
+
x="14"
|
|
223
|
+
y="9"
|
|
224
|
+
/>
|
|
225
|
+
<rect
|
|
226
|
+
fill="currentColor"
|
|
227
|
+
height="1"
|
|
228
|
+
rx=".5"
|
|
229
|
+
transform="rotate(90 8 11)"
|
|
230
|
+
width="1"
|
|
231
|
+
x="8"
|
|
232
|
+
y="11"
|
|
233
|
+
/>
|
|
234
|
+
<rect
|
|
235
|
+
fill="currentColor"
|
|
236
|
+
height="1"
|
|
237
|
+
rx=".5"
|
|
238
|
+
transform="rotate(90 14 11)"
|
|
239
|
+
width="1"
|
|
240
|
+
x="14"
|
|
241
|
+
y="11"
|
|
242
|
+
/>
|
|
243
|
+
<rect
|
|
244
|
+
fill="currentColor"
|
|
245
|
+
height="1"
|
|
246
|
+
rx=".5"
|
|
247
|
+
transform="rotate(90 6 7)"
|
|
248
|
+
width="1"
|
|
249
|
+
x="6"
|
|
250
|
+
y="7"
|
|
251
|
+
/>
|
|
252
|
+
<rect
|
|
253
|
+
fill="currentColor"
|
|
254
|
+
height="1"
|
|
255
|
+
rx=".5"
|
|
256
|
+
transform="rotate(90 6 13)"
|
|
257
|
+
width="1"
|
|
258
|
+
x="6"
|
|
259
|
+
y="13"
|
|
260
|
+
/>
|
|
261
|
+
<rect
|
|
262
|
+
fill="currentColor"
|
|
263
|
+
height="1"
|
|
264
|
+
rx=".5"
|
|
265
|
+
transform="rotate(90 4 7)"
|
|
266
|
+
width="1"
|
|
267
|
+
x="4"
|
|
268
|
+
y="7"
|
|
269
|
+
/>
|
|
270
|
+
<rect
|
|
271
|
+
fill="currentColor"
|
|
272
|
+
height="1"
|
|
273
|
+
rx=".5"
|
|
274
|
+
transform="rotate(90 4 13)"
|
|
275
|
+
width="1"
|
|
276
|
+
x="4"
|
|
277
|
+
y="13"
|
|
278
|
+
/>
|
|
279
|
+
<rect
|
|
280
|
+
fill="currentColor"
|
|
281
|
+
height="1"
|
|
282
|
+
rx=".5"
|
|
283
|
+
transform="rotate(90 10 1)"
|
|
284
|
+
width="1"
|
|
285
|
+
x="10"
|
|
286
|
+
y="1"
|
|
287
|
+
/>
|
|
288
|
+
<rect
|
|
289
|
+
fill="currentColor"
|
|
290
|
+
height="1"
|
|
291
|
+
rx=".5"
|
|
292
|
+
transform="rotate(90 12 1)"
|
|
293
|
+
width="1"
|
|
294
|
+
x="12"
|
|
295
|
+
y="1"
|
|
296
|
+
/>
|
|
297
|
+
<rect
|
|
298
|
+
fill="currentColor"
|
|
299
|
+
height="1"
|
|
300
|
+
rx=".5"
|
|
301
|
+
transform="rotate(90 8 1)"
|
|
302
|
+
width="1"
|
|
303
|
+
x="8"
|
|
304
|
+
y="1"
|
|
305
|
+
/>
|
|
306
|
+
<rect
|
|
307
|
+
fill="currentColor"
|
|
308
|
+
height="1"
|
|
309
|
+
rx=".5"
|
|
310
|
+
transform="rotate(90 14 1)"
|
|
311
|
+
width="1"
|
|
312
|
+
x="14"
|
|
313
|
+
y="1"
|
|
314
|
+
/>
|
|
315
|
+
<rect
|
|
316
|
+
fill="currentColor"
|
|
317
|
+
height="1"
|
|
318
|
+
rx=".5"
|
|
319
|
+
transform="rotate(90 6 1)"
|
|
320
|
+
width="1"
|
|
321
|
+
x="6"
|
|
322
|
+
y="1"
|
|
323
|
+
/>
|
|
324
|
+
<rect
|
|
325
|
+
fill="currentColor"
|
|
326
|
+
height="1"
|
|
327
|
+
rx=".5"
|
|
328
|
+
transform="rotate(90 4 1)"
|
|
329
|
+
width="1"
|
|
330
|
+
x="4"
|
|
331
|
+
y="1"
|
|
332
|
+
/>
|
|
333
|
+
</svg>
|
|
334
|
+
);
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
export function BorderNoneIcon(props: LucideProps) {
|
|
338
|
+
return (
|
|
339
|
+
<svg
|
|
340
|
+
fill="none"
|
|
341
|
+
height="15"
|
|
342
|
+
viewBox="0 0 15 15"
|
|
343
|
+
width="15"
|
|
344
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
345
|
+
{...props}
|
|
346
|
+
>
|
|
347
|
+
<title>Border None</title>
|
|
348
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="5.025" />
|
|
349
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="13" y="5.025" />
|
|
350
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="3.025" />
|
|
351
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="13" y="3.025" />
|
|
352
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="7.025" />
|
|
353
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="13.025" />
|
|
354
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="1.025" />
|
|
355
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="13" y="7.025" />
|
|
356
|
+
<rect
|
|
357
|
+
fill="currentColor"
|
|
358
|
+
height="1"
|
|
359
|
+
rx=".5"
|
|
360
|
+
width="1"
|
|
361
|
+
x="13"
|
|
362
|
+
y="13.025"
|
|
363
|
+
/>
|
|
364
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="13" y="1.025" />
|
|
365
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="5" y="7.025" />
|
|
366
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="5" y="13.025" />
|
|
367
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="5" y="1.025" />
|
|
368
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="3" y="7.025" />
|
|
369
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="3" y="13.025" />
|
|
370
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="3" y="1.025" />
|
|
371
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="9" y="7.025" />
|
|
372
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="9" y="13.025" />
|
|
373
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="9" y="1.025" />
|
|
374
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="11" y="7.025" />
|
|
375
|
+
<rect
|
|
376
|
+
fill="currentColor"
|
|
377
|
+
height="1"
|
|
378
|
+
rx=".5"
|
|
379
|
+
width="1"
|
|
380
|
+
x="11"
|
|
381
|
+
y="13.025"
|
|
382
|
+
/>
|
|
383
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="11" y="1.025" />
|
|
384
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="9.025" />
|
|
385
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="13" y="9.025" />
|
|
386
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="11.025" />
|
|
387
|
+
<rect
|
|
388
|
+
fill="currentColor"
|
|
389
|
+
height="1"
|
|
390
|
+
rx=".5"
|
|
391
|
+
width="1"
|
|
392
|
+
x="13"
|
|
393
|
+
y="11.025"
|
|
394
|
+
/>
|
|
395
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="5.025" />
|
|
396
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="3.025" />
|
|
397
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="7.025" />
|
|
398
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="13.025" />
|
|
399
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="1.025" />
|
|
400
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="9.025" />
|
|
401
|
+
<rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="11.025" />
|
|
402
|
+
</svg>
|
|
403
|
+
);
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
export function BorderRightIcon(props: LucideProps) {
|
|
407
|
+
return (
|
|
408
|
+
<svg
|
|
409
|
+
fill="none"
|
|
410
|
+
height="15"
|
|
411
|
+
viewBox="0 0 15 15"
|
|
412
|
+
width="15"
|
|
413
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
414
|
+
{...props}
|
|
415
|
+
>
|
|
416
|
+
<title>Border Right</title>
|
|
417
|
+
<path
|
|
418
|
+
clipRule="evenodd"
|
|
419
|
+
d="M13.25 1L13.25 14L14.75 14L14.75 1L13.25 1Z"
|
|
420
|
+
fill="currentColor"
|
|
421
|
+
fillRule="evenodd"
|
|
422
|
+
/>
|
|
423
|
+
<rect
|
|
424
|
+
fill="currentColor"
|
|
425
|
+
height="1"
|
|
426
|
+
rx=".5"
|
|
427
|
+
transform="matrix(0 1 1 0 5 7)"
|
|
428
|
+
width="1"
|
|
429
|
+
/>
|
|
430
|
+
<rect
|
|
431
|
+
fill="currentColor"
|
|
432
|
+
height="1"
|
|
433
|
+
rx=".5"
|
|
434
|
+
transform="matrix(0 1 1 0 5 13)"
|
|
435
|
+
width="1"
|
|
436
|
+
/>
|
|
437
|
+
<rect
|
|
438
|
+
fill="currentColor"
|
|
439
|
+
height="1"
|
|
440
|
+
rx=".5"
|
|
441
|
+
transform="matrix(0 1 1 0 3 7)"
|
|
442
|
+
width="1"
|
|
443
|
+
/>
|
|
444
|
+
<rect
|
|
445
|
+
fill="currentColor"
|
|
446
|
+
height="1"
|
|
447
|
+
rx=".5"
|
|
448
|
+
transform="matrix(0 1 1 0 3 13)"
|
|
449
|
+
width="1"
|
|
450
|
+
/>
|
|
451
|
+
<rect
|
|
452
|
+
fill="currentColor"
|
|
453
|
+
height="1"
|
|
454
|
+
rx=".5"
|
|
455
|
+
transform="matrix(0 1 1 0 7 7)"
|
|
456
|
+
width="1"
|
|
457
|
+
/>
|
|
458
|
+
<rect
|
|
459
|
+
fill="currentColor"
|
|
460
|
+
height="1"
|
|
461
|
+
rx=".5"
|
|
462
|
+
transform="matrix(0 1 1 0 1 7)"
|
|
463
|
+
width="1"
|
|
464
|
+
/>
|
|
465
|
+
<rect
|
|
466
|
+
fill="currentColor"
|
|
467
|
+
height="1"
|
|
468
|
+
rx=".5"
|
|
469
|
+
transform="matrix(0 1 1 0 7 13)"
|
|
470
|
+
width="1"
|
|
471
|
+
/>
|
|
472
|
+
<rect
|
|
473
|
+
fill="currentColor"
|
|
474
|
+
height="1"
|
|
475
|
+
rx=".5"
|
|
476
|
+
transform="matrix(0 1 1 0 1 13)"
|
|
477
|
+
width="1"
|
|
478
|
+
/>
|
|
479
|
+
<rect
|
|
480
|
+
fill="currentColor"
|
|
481
|
+
height="1"
|
|
482
|
+
rx=".5"
|
|
483
|
+
transform="matrix(0 1 1 0 7 5)"
|
|
484
|
+
width="1"
|
|
485
|
+
/>
|
|
486
|
+
<rect
|
|
487
|
+
fill="currentColor"
|
|
488
|
+
height="1"
|
|
489
|
+
rx=".5"
|
|
490
|
+
transform="matrix(0 1 1 0 1 5)"
|
|
491
|
+
width="1"
|
|
492
|
+
/>
|
|
493
|
+
<rect
|
|
494
|
+
fill="currentColor"
|
|
495
|
+
height="1"
|
|
496
|
+
rx=".5"
|
|
497
|
+
transform="matrix(0 1 1 0 7 3)"
|
|
498
|
+
width="1"
|
|
499
|
+
/>
|
|
500
|
+
<rect
|
|
501
|
+
fill="currentColor"
|
|
502
|
+
height="1"
|
|
503
|
+
rx=".5"
|
|
504
|
+
transform="matrix(0 1 1 0 1 3)"
|
|
505
|
+
width="1"
|
|
506
|
+
/>
|
|
507
|
+
<rect
|
|
508
|
+
fill="currentColor"
|
|
509
|
+
height="1"
|
|
510
|
+
rx=".5"
|
|
511
|
+
transform="matrix(0 1 1 0 7 9)"
|
|
512
|
+
width="1"
|
|
513
|
+
/>
|
|
514
|
+
<rect
|
|
515
|
+
fill="currentColor"
|
|
516
|
+
height="1"
|
|
517
|
+
rx=".5"
|
|
518
|
+
transform="matrix(0 1 1 0 1 9)"
|
|
519
|
+
width="1"
|
|
520
|
+
/>
|
|
521
|
+
<rect
|
|
522
|
+
fill="currentColor"
|
|
523
|
+
height="1"
|
|
524
|
+
rx=".5"
|
|
525
|
+
transform="matrix(0 1 1 0 7 11)"
|
|
526
|
+
width="1"
|
|
527
|
+
/>
|
|
528
|
+
<rect
|
|
529
|
+
fill="currentColor"
|
|
530
|
+
height="1"
|
|
531
|
+
rx=".5"
|
|
532
|
+
transform="matrix(0 1 1 0 1 11)"
|
|
533
|
+
width="1"
|
|
534
|
+
/>
|
|
535
|
+
<rect
|
|
536
|
+
fill="currentColor"
|
|
537
|
+
height="1"
|
|
538
|
+
rx=".5"
|
|
539
|
+
transform="matrix(0 1 1 0 9 7)"
|
|
540
|
+
width="1"
|
|
541
|
+
/>
|
|
542
|
+
<rect
|
|
543
|
+
fill="currentColor"
|
|
544
|
+
height="1"
|
|
545
|
+
rx=".5"
|
|
546
|
+
transform="matrix(0 1 1 0 9 13)"
|
|
547
|
+
width="1"
|
|
548
|
+
/>
|
|
549
|
+
<rect
|
|
550
|
+
fill="currentColor"
|
|
551
|
+
height="1"
|
|
552
|
+
rx=".5"
|
|
553
|
+
transform="matrix(0 1 1 0 11 7)"
|
|
554
|
+
width="1"
|
|
555
|
+
/>
|
|
556
|
+
<rect
|
|
557
|
+
fill="currentColor"
|
|
558
|
+
height="1"
|
|
559
|
+
rx=".5"
|
|
560
|
+
transform="matrix(0 1 1 0 11 13)"
|
|
561
|
+
width="1"
|
|
562
|
+
/>
|
|
563
|
+
<rect
|
|
564
|
+
fill="currentColor"
|
|
565
|
+
height="1"
|
|
566
|
+
rx=".5"
|
|
567
|
+
transform="matrix(0 1 1 0 5 1)"
|
|
568
|
+
width="1"
|
|
569
|
+
/>
|
|
570
|
+
<rect
|
|
571
|
+
fill="currentColor"
|
|
572
|
+
height="1"
|
|
573
|
+
rx=".5"
|
|
574
|
+
transform="matrix(0 1 1 0 3 1)"
|
|
575
|
+
width="1"
|
|
576
|
+
/>
|
|
577
|
+
<rect
|
|
578
|
+
fill="currentColor"
|
|
579
|
+
height="1"
|
|
580
|
+
rx=".5"
|
|
581
|
+
transform="matrix(0 1 1 0 7 1)"
|
|
582
|
+
width="1"
|
|
583
|
+
/>
|
|
584
|
+
<rect
|
|
585
|
+
fill="currentColor"
|
|
586
|
+
height="1"
|
|
587
|
+
rx=".5"
|
|
588
|
+
transform="matrix(0 1 1 0 1 1)"
|
|
589
|
+
width="1"
|
|
590
|
+
/>
|
|
591
|
+
<rect
|
|
592
|
+
fill="currentColor"
|
|
593
|
+
height="1"
|
|
594
|
+
rx=".5"
|
|
595
|
+
transform="matrix(0 1 1 0 9 1)"
|
|
596
|
+
width="1"
|
|
597
|
+
/>
|
|
598
|
+
<rect
|
|
599
|
+
fill="currentColor"
|
|
600
|
+
height="1"
|
|
601
|
+
rx=".5"
|
|
602
|
+
transform="matrix(0 1 1 0 11 1)"
|
|
603
|
+
width="1"
|
|
604
|
+
/>
|
|
605
|
+
</svg>
|
|
606
|
+
);
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
export function BorderTopIcon(props: LucideProps) {
|
|
610
|
+
return (
|
|
611
|
+
<svg
|
|
612
|
+
fill="none"
|
|
613
|
+
height="15"
|
|
614
|
+
viewBox="0 0 15 15"
|
|
615
|
+
width="15"
|
|
616
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
617
|
+
{...props}
|
|
618
|
+
>
|
|
619
|
+
<title>Border Top</title>
|
|
620
|
+
<path
|
|
621
|
+
clipRule="evenodd"
|
|
622
|
+
d="M14 1.75L1 1.75L1 0.249999L14 0.25L14 1.75Z"
|
|
623
|
+
fill="currentColor"
|
|
624
|
+
fillRule="evenodd"
|
|
625
|
+
/>
|
|
626
|
+
<rect
|
|
627
|
+
fill="currentColor"
|
|
628
|
+
height="1"
|
|
629
|
+
rx=".5"
|
|
630
|
+
transform="rotate(-180 8 10)"
|
|
631
|
+
width="1"
|
|
632
|
+
x="8"
|
|
633
|
+
y="10"
|
|
634
|
+
/>
|
|
635
|
+
<rect
|
|
636
|
+
fill="currentColor"
|
|
637
|
+
height="1"
|
|
638
|
+
rx=".5"
|
|
639
|
+
transform="rotate(-180 2 10)"
|
|
640
|
+
width="1"
|
|
641
|
+
x="2"
|
|
642
|
+
y="10"
|
|
643
|
+
/>
|
|
644
|
+
<rect
|
|
645
|
+
fill="currentColor"
|
|
646
|
+
height="1"
|
|
647
|
+
rx=".5"
|
|
648
|
+
transform="rotate(-180 8 12)"
|
|
649
|
+
width="1"
|
|
650
|
+
x="8"
|
|
651
|
+
y="12"
|
|
652
|
+
/>
|
|
653
|
+
<rect
|
|
654
|
+
fill="currentColor"
|
|
655
|
+
height="1"
|
|
656
|
+
rx=".5"
|
|
657
|
+
transform="rotate(-180 2 12)"
|
|
658
|
+
width="1"
|
|
659
|
+
x="2"
|
|
660
|
+
y="12"
|
|
661
|
+
/>
|
|
662
|
+
<rect
|
|
663
|
+
fill="currentColor"
|
|
664
|
+
height="1"
|
|
665
|
+
rx=".5"
|
|
666
|
+
transform="rotate(-180 8 8)"
|
|
667
|
+
width="1"
|
|
668
|
+
x="8"
|
|
669
|
+
y="8"
|
|
670
|
+
/>
|
|
671
|
+
<rect
|
|
672
|
+
fill="currentColor"
|
|
673
|
+
height="1"
|
|
674
|
+
rx=".5"
|
|
675
|
+
transform="rotate(-180 8 14)"
|
|
676
|
+
width="1"
|
|
677
|
+
x="8"
|
|
678
|
+
y="14"
|
|
679
|
+
/>
|
|
680
|
+
<rect
|
|
681
|
+
fill="currentColor"
|
|
682
|
+
height="1"
|
|
683
|
+
rx=".5"
|
|
684
|
+
transform="rotate(-180 2 8)"
|
|
685
|
+
width="1"
|
|
686
|
+
x="2"
|
|
687
|
+
y="8"
|
|
688
|
+
/>
|
|
689
|
+
<rect
|
|
690
|
+
fill="currentColor"
|
|
691
|
+
height="1"
|
|
692
|
+
rx=".5"
|
|
693
|
+
transform="rotate(-180 2 14)"
|
|
694
|
+
width="1"
|
|
695
|
+
x="2"
|
|
696
|
+
y="14"
|
|
697
|
+
/>
|
|
698
|
+
<rect
|
|
699
|
+
fill="currentColor"
|
|
700
|
+
height="1"
|
|
701
|
+
rx=".5"
|
|
702
|
+
transform="rotate(-180 10 8)"
|
|
703
|
+
width="1"
|
|
704
|
+
x="10"
|
|
705
|
+
y="8"
|
|
706
|
+
/>
|
|
707
|
+
<rect
|
|
708
|
+
fill="currentColor"
|
|
709
|
+
height="1"
|
|
710
|
+
rx=".5"
|
|
711
|
+
transform="rotate(-180 10 14)"
|
|
712
|
+
width="1"
|
|
713
|
+
x="10"
|
|
714
|
+
y="14"
|
|
715
|
+
/>
|
|
716
|
+
<rect
|
|
717
|
+
fill="currentColor"
|
|
718
|
+
height="1"
|
|
719
|
+
rx=".5"
|
|
720
|
+
transform="rotate(-180 12 8)"
|
|
721
|
+
width="1"
|
|
722
|
+
x="12"
|
|
723
|
+
y="8"
|
|
724
|
+
/>
|
|
725
|
+
<rect
|
|
726
|
+
fill="currentColor"
|
|
727
|
+
height="1"
|
|
728
|
+
rx=".5"
|
|
729
|
+
transform="rotate(-180 12 14)"
|
|
730
|
+
width="1"
|
|
731
|
+
x="12"
|
|
732
|
+
y="14"
|
|
733
|
+
/>
|
|
734
|
+
<rect
|
|
735
|
+
fill="currentColor"
|
|
736
|
+
height="1"
|
|
737
|
+
rx=".5"
|
|
738
|
+
transform="rotate(-180 6 8)"
|
|
739
|
+
width="1"
|
|
740
|
+
x="6"
|
|
741
|
+
y="8"
|
|
742
|
+
/>
|
|
743
|
+
<rect
|
|
744
|
+
fill="currentColor"
|
|
745
|
+
height="1"
|
|
746
|
+
rx=".5"
|
|
747
|
+
transform="rotate(-180 6 14)"
|
|
748
|
+
width="1"
|
|
749
|
+
x="6"
|
|
750
|
+
y="14"
|
|
751
|
+
/>
|
|
752
|
+
<rect
|
|
753
|
+
fill="currentColor"
|
|
754
|
+
height="1"
|
|
755
|
+
rx=".5"
|
|
756
|
+
transform="rotate(-180 4 8)"
|
|
757
|
+
width="1"
|
|
758
|
+
x="4"
|
|
759
|
+
y="8"
|
|
760
|
+
/>
|
|
761
|
+
<rect
|
|
762
|
+
fill="currentColor"
|
|
763
|
+
height="1"
|
|
764
|
+
rx=".5"
|
|
765
|
+
transform="rotate(-180 4 14)"
|
|
766
|
+
width="1"
|
|
767
|
+
x="4"
|
|
768
|
+
y="14"
|
|
769
|
+
/>
|
|
770
|
+
<rect
|
|
771
|
+
fill="currentColor"
|
|
772
|
+
height="1"
|
|
773
|
+
rx=".5"
|
|
774
|
+
transform="rotate(-180 8 6)"
|
|
775
|
+
width="1"
|
|
776
|
+
x="8"
|
|
777
|
+
y="6"
|
|
778
|
+
/>
|
|
779
|
+
<rect
|
|
780
|
+
fill="currentColor"
|
|
781
|
+
height="1"
|
|
782
|
+
rx=".5"
|
|
783
|
+
transform="rotate(-180 2 6)"
|
|
784
|
+
width="1"
|
|
785
|
+
x="2"
|
|
786
|
+
y="6"
|
|
787
|
+
/>
|
|
788
|
+
<rect
|
|
789
|
+
fill="currentColor"
|
|
790
|
+
height="1"
|
|
791
|
+
rx=".5"
|
|
792
|
+
transform="rotate(-180 8 4)"
|
|
793
|
+
width="1"
|
|
794
|
+
x="8"
|
|
795
|
+
y="4"
|
|
796
|
+
/>
|
|
797
|
+
<rect
|
|
798
|
+
fill="currentColor"
|
|
799
|
+
height="1"
|
|
800
|
+
rx=".5"
|
|
801
|
+
transform="rotate(-180 2 4)"
|
|
802
|
+
width="1"
|
|
803
|
+
x="2"
|
|
804
|
+
y="4"
|
|
805
|
+
/>
|
|
806
|
+
<rect
|
|
807
|
+
fill="currentColor"
|
|
808
|
+
height="1"
|
|
809
|
+
rx=".5"
|
|
810
|
+
transform="rotate(-180 14 10)"
|
|
811
|
+
width="1"
|
|
812
|
+
x="14"
|
|
813
|
+
y="10"
|
|
814
|
+
/>
|
|
815
|
+
<rect
|
|
816
|
+
fill="currentColor"
|
|
817
|
+
height="1"
|
|
818
|
+
rx=".5"
|
|
819
|
+
transform="rotate(-180 14 12)"
|
|
820
|
+
width="1"
|
|
821
|
+
x="14"
|
|
822
|
+
y="12"
|
|
823
|
+
/>
|
|
824
|
+
<rect
|
|
825
|
+
fill="currentColor"
|
|
826
|
+
height="1"
|
|
827
|
+
rx=".5"
|
|
828
|
+
transform="rotate(-180 14 8)"
|
|
829
|
+
width="1"
|
|
830
|
+
x="14"
|
|
831
|
+
y="8"
|
|
832
|
+
/>
|
|
833
|
+
<rect
|
|
834
|
+
fill="currentColor"
|
|
835
|
+
height="1"
|
|
836
|
+
rx=".5"
|
|
837
|
+
transform="rotate(-180 14 14)"
|
|
838
|
+
width="1"
|
|
839
|
+
x="14"
|
|
840
|
+
y="14"
|
|
841
|
+
/>
|
|
842
|
+
<rect
|
|
843
|
+
fill="currentColor"
|
|
844
|
+
height="1"
|
|
845
|
+
rx=".5"
|
|
846
|
+
transform="rotate(-180 14 6)"
|
|
847
|
+
width="1"
|
|
848
|
+
x="14"
|
|
849
|
+
y="6"
|
|
850
|
+
/>
|
|
851
|
+
<rect
|
|
852
|
+
fill="currentColor"
|
|
853
|
+
height="1"
|
|
854
|
+
rx=".5"
|
|
855
|
+
transform="rotate(-180 14 4)"
|
|
856
|
+
width="1"
|
|
857
|
+
x="14"
|
|
858
|
+
y="4"
|
|
859
|
+
/>
|
|
860
|
+
</svg>
|
|
861
|
+
);
|
|
862
|
+
}
|