radtools 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/README.md +108 -0
- package/bin/radtools.js +5 -0
- package/dist/cli/index.js +427 -0
- package/package.json +55 -0
- package/templates/api-routes/assets/optimize/route.ts +94 -0
- package/templates/api-routes/assets/route.ts +159 -0
- package/templates/api-routes/components/create-folder/route.ts +55 -0
- package/templates/api-routes/components/route.ts +156 -0
- package/templates/api-routes/fonts/route.ts +96 -0
- package/templates/api-routes/fonts/upload/route.ts +79 -0
- package/templates/api-routes/read-css/route.ts +29 -0
- package/templates/api-routes/write-css/route.ts +423 -0
- package/templates/components/Rad_os/AppWindow.tsx +423 -0
- package/templates/components/Rad_os/MobileAppModal.tsx +76 -0
- package/templates/components/Rad_os/WindowTitleBar.tsx +290 -0
- package/templates/components/icons/Icon.tsx +224 -0
- package/templates/components/icons/README.md +85 -0
- package/templates/components/icons/index.ts +20 -0
- package/templates/components/icons.tsx +164 -0
- package/templates/components/ui/Accordion.tsx +268 -0
- package/templates/components/ui/Alert.tsx +111 -0
- package/templates/components/ui/Badge.tsx +87 -0
- package/templates/components/ui/Breadcrumbs.tsx +88 -0
- package/templates/components/ui/Button.tsx +249 -0
- package/templates/components/ui/Card.tsx +137 -0
- package/templates/components/ui/Checkbox.tsx +137 -0
- package/templates/components/ui/ContextMenu.tsx +220 -0
- package/templates/components/ui/Dialog.tsx +264 -0
- package/templates/components/ui/Divider.tsx +70 -0
- package/templates/components/ui/DropdownMenu.tsx +301 -0
- package/templates/components/ui/HelpPanel.tsx +119 -0
- package/templates/components/ui/Input.tsx +176 -0
- package/templates/components/ui/Popover.tsx +211 -0
- package/templates/components/ui/Progress.tsx +158 -0
- package/templates/components/ui/Select.tsx +134 -0
- package/templates/components/ui/Sheet.tsx +316 -0
- package/templates/components/ui/Slider.tsx +223 -0
- package/templates/components/ui/Switch.tsx +155 -0
- package/templates/components/ui/Tabs.tsx +253 -0
- package/templates/components/ui/Toast.tsx +192 -0
- package/templates/components/ui/Tooltip.tsx +129 -0
- package/templates/components/ui/hooks/useModalBehavior.ts +66 -0
- package/templates/components/ui/index.ts +84 -0
- package/templates/devtools/DevToolsPanel.tsx +261 -0
- package/templates/devtools/DevToolsProvider.tsx +43 -0
- package/templates/devtools/components/BreakpointIndicator.tsx +49 -0
- package/templates/devtools/components/ColorPicker.tsx +33 -0
- package/templates/devtools/components/ComponentsSecondaryNav.tsx +44 -0
- package/templates/devtools/components/ContextualFooter.tsx +56 -0
- package/templates/devtools/components/DraggablePanel.tsx +43 -0
- package/templates/devtools/components/PrimaryNavigationFooter.tsx +254 -0
- package/templates/devtools/components/SearchableColorDropdown.tsx +253 -0
- package/templates/devtools/components/SecondaryNavigation.tsx +36 -0
- package/templates/devtools/components/TokenDropdown.tsx +47 -0
- package/templates/devtools/components/TypographyFooter.tsx +145 -0
- package/templates/devtools/hooks/useMockState.ts +16 -0
- package/templates/devtools/index.ts +17 -0
- package/templates/devtools/lib/componentScanner.ts +78 -0
- package/templates/devtools/lib/cssParser.ts +465 -0
- package/templates/devtools/lib/searchIndexes.ts +45 -0
- package/templates/devtools/lib/selectorGenerator.ts +86 -0
- package/templates/devtools/store/index.ts +66 -0
- package/templates/devtools/store/slices/assetsSlice.ts +106 -0
- package/templates/devtools/store/slices/componentsSlice.ts +59 -0
- package/templates/devtools/store/slices/mockStatesSlice.ts +77 -0
- package/templates/devtools/store/slices/panelSlice.ts +17 -0
- package/templates/devtools/store/slices/typographySlice.ts +538 -0
- package/templates/devtools/store/slices/variablesSlice.ts +167 -0
- package/templates/devtools/tabs/AssetsTab/AssetGrid.tsx +76 -0
- package/templates/devtools/tabs/AssetsTab/FolderTree.tsx +53 -0
- package/templates/devtools/tabs/AssetsTab/UploadDropzone.tsx +76 -0
- package/templates/devtools/tabs/AssetsTab/index.tsx +182 -0
- package/templates/devtools/tabs/ComponentsTab/AddTabButton.tsx +63 -0
- package/templates/devtools/tabs/ComponentsTab/ComponentList.tsx +153 -0
- package/templates/devtools/tabs/ComponentsTab/DesignSystemTab.tsx +1515 -0
- package/templates/devtools/tabs/ComponentsTab/DynamicFolderTab.tsx +113 -0
- package/templates/devtools/tabs/ComponentsTab/PropDisplay.tsx +55 -0
- package/templates/devtools/tabs/ComponentsTab/index.tsx +167 -0
- package/templates/devtools/tabs/ComponentsTab/previews/.gitkeep +4 -0
- package/templates/devtools/tabs/ComponentsTab/previews/Rad_os.tsx +262 -0
- package/templates/devtools/tabs/ComponentsTab/tabConfig.ts +53 -0
- package/templates/devtools/tabs/MockStatesTab/index.tsx +29 -0
- package/templates/devtools/tabs/TypographyTab/FontManager.tsx +421 -0
- package/templates/devtools/tabs/TypographyTab/TypographyStylesDisplay.tsx +290 -0
- package/templates/devtools/tabs/TypographyTab/index.tsx +98 -0
- package/templates/devtools/tabs/VariablesTab/BaseColorEditor.tsx +267 -0
- package/templates/devtools/tabs/VariablesTab/BorderRadiusEditor.tsx +37 -0
- package/templates/devtools/tabs/VariablesTab/ColorModeSelector.tsx +235 -0
- package/templates/devtools/tabs/VariablesTab/index.tsx +100 -0
- package/templates/devtools/types/index.ts +99 -0
- package/templates/globals.css +574 -0
- package/templates/hooks/index.ts +1 -0
- package/templates/hooks/useWindowManager.ts +212 -0
- package/templates/public/assets/icons/avatar.svg +18 -0
- package/templates/public/assets/icons/checkmark-filled.svg +14 -0
- package/templates/public/assets/icons/checkmark.svg +14 -0
- package/templates/public/assets/icons/chevron-down.svg +14 -0
- package/templates/public/assets/icons/close.svg +14 -0
- package/templates/public/assets/icons/copy.svg +14 -0
- package/templates/public/assets/icons/download.svg +14 -0
- package/templates/public/assets/icons/expand.svg +31 -0
- package/templates/public/assets/icons/file-blank.svg +17 -0
- package/templates/public/assets/icons/file-image.svg +19 -0
- package/templates/public/assets/icons/file-written.svg +17 -0
- package/templates/public/assets/icons/folder-closed.svg +17 -0
- package/templates/public/assets/icons/folder-open.svg +17 -0
- package/templates/public/assets/icons/hamburger.svg +18 -0
- package/templates/public/assets/icons/home-outline.svg +28 -0
- package/templates/public/assets/icons/home.svg +30 -0
- package/templates/public/assets/icons/hourglass.svg +25 -0
- package/templates/public/assets/icons/information-circle.svg +14 -0
- package/templates/public/assets/icons/information.svg +17 -0
- package/templates/public/assets/icons/lightning.svg +14 -0
- package/templates/public/assets/icons/locked.svg +17 -0
- package/templates/public/assets/icons/not-allowed.svg +14 -0
- package/templates/public/assets/icons/plus.svg +5 -0
- package/templates/public/assets/icons/power-thin.svg +17 -0
- package/templates/public/assets/icons/power.svg +17 -0
- package/templates/public/assets/icons/question-block.svg +14 -0
- package/templates/public/assets/icons/question.svg +17 -0
- package/templates/public/assets/icons/refresh-block.svg +14 -0
- package/templates/public/assets/icons/refresh.svg +17 -0
- package/templates/public/assets/icons/save.svg +14 -0
- package/templates/public/assets/icons/search.svg +25 -0
- package/templates/public/assets/icons/settings.svg +14 -0
- package/templates/public/assets/icons/trash-full.svg +21 -0
- package/templates/public/assets/icons/trash-open.svg +23 -0
- package/templates/public/assets/icons/trash.svg +18 -0
- package/templates/public/assets/icons/unlocked.svg +17 -0
- package/templates/public/assets/icons/waring-triangle-filled.svg +17 -0
- package/templates/public/assets/icons/warning-triangle-filled-2.svg +30 -0
- package/templates/public/assets/icons/warning-triangle-lines.svg +29 -0
- package/templates/public/assets/icons/wrench.svg +17 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<path class="st0" d="M9,7V2h-2v5h2Z"/>
|
|
14
|
+
<path class="st0" d="M13,7v-2h-1v-1h-2v1h1v1h1v5h-1v1h-2v1h-2v-1h-2v-1h-1v-5h1v-1h1v-1h-2v1h-1v2h-1v3h1v2h1v1h2v1h4v-1h2v-1h1v-2h1v-3h-1Z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<path class="st0" d="M13,5v-1h-1v-1h-2v2h1v1h1v4h-1v1h-1v1h-4v-1h-1v-1h-1v-4h1v-1h1v-2h-2v1h-1v1h-1v6h1v1h1v1h1v1h6v-1h1v-1h1v-1h1v-6h-1Z"/>
|
|
14
|
+
<path class="st0" d="M9,7V1h-2v6h2Z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<path class="st0" d="M13,3v-1H3v1h-1v10h1v1h10v-1h1V3h-1ZM7,3h3v1h1v4h-1v1h-1v1h-2v-2h1v-1h1v-2h-2v1h-2v-2h1v-1h1ZM8,13h-1v-2h2v2h-1Z"/>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<path class="st0" d="M12,4v-1h-1v-1h-5v1h-1v1h-1v2h2v-1h1v-1h3v1h1v1h-1v1h-2v1h-1v2h2v-1h1v-1h2v-1h1v-3h-1Z"/>
|
|
14
|
+
<path class="st0" d="M7,12v2h2v-2h-2Z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<path class="st0" d="M13,3v-1H3v1h-1v10h1v1h10v-1h1V3h-1ZM13,8v2h-1v1h-3v2h-1v-1h-1v-1h-1v-1h1v-1h1v-1h-1v-2h-3v3h1v1h-1v-1h-1v-3h1v-1h3v-2h1v1h1v1h1v1h-1v1h-1v1h1v2h3v-3h-1v-1h1v1h1v1Z"/>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<polygon class="st0" points="13 7 12 7 12 6 12 5 11 5 11 4 10 4 10 3 9 3 8 3 7 3 6 3 5 3 5 4 4 4 4 5 5 5 6 5 7 5 8 5 9 5 9 6 10 6 10 7 9 7 9 8 10 8 10 9 11 9 11 10 12 10 12 9 13 9 13 8 14 8 14 7 13 7"/>
|
|
14
|
+
<polygon class="st0" points="10 11 9 11 8 11 7 11 7 10 6 10 6 9 7 9 7 8 6 8 6 7 5 7 5 6 4 6 4 7 3 7 3 8 2 8 2 9 3 9 4 9 4 10 4 11 5 11 5 12 6 12 6 13 7 13 8 13 9 13 10 13 11 13 11 12 12 12 12 11 11 11 10 11"/>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.st0 {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
}
|
|
8
|
+
</style>
|
|
9
|
+
</defs>
|
|
10
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
11
|
+
<path class="st0" d="M14,0H2H0v2v12v2h2h12h2v-2V2V0H14zM4,2h6v4H4V2zM12,14H4v-4h8V14z"/>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
|
14
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<path class="st0" d="M6,3h2v-1h-4v1h2Z"/>
|
|
14
|
+
<rect class="st0" x="3" y="3" width="1" height="1"/>
|
|
15
|
+
<rect class="st0" x="8" y="3" width="1" height="1"/>
|
|
16
|
+
<path class="st0" d="M9,6v2h1v-4h-1v2Z"/>
|
|
17
|
+
<path class="st0" d="M3,6v-2h-1v4h1v-2Z"/>
|
|
18
|
+
<path class="st0" d="M8,6v-1h-1v-1h-2v1h-1v2h1v-1h1v1h-1v1h2v-1h1v-1Z"/>
|
|
19
|
+
<rect class="st0" x="3" y="8" width="1" height="1"/>
|
|
20
|
+
<rect class="st0" x="8" y="8" width="1" height="1"/>
|
|
21
|
+
<path class="st0" d="M6,9h-2v1h4v-1h-2Z"/>
|
|
22
|
+
<path class="st0" d="M13,12v-1h-1v-1h-1v-1h-1v1h-1v1h1v1h1v1h1v1h2v-2h-1Z"/>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<path class="st0" d="M13,7h-1v-2h1v-2h-2v1h-2v-2h-2v2h-2v-1h-2v2h1v2h-2v2h2v2h-1v2h2v-1h2v2h2v-2h2v1h2v-2h-1v-2h2v-2h-1ZM10,9h-1v1h-2v-1h-1v-2h1v-1h2v1h1v2Z"/>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<rect class="st0" x="4" y="2" width="1" height="1"/>
|
|
14
|
+
<path class="st0" d="M7,4h1v-2h-2v1h1v1Z"/>
|
|
15
|
+
<path class="st0" d="M13,3h-1v2h1v-1h1v-1h-1Z"/>
|
|
16
|
+
<path class="st0" d="M3,5h4v-1h-1v-1h-1v1h-1v-1h-2v1h1v1Z"/>
|
|
17
|
+
<path class="st0" d="M9,5h2v-3h-1v1h-1v1h-1v1h1Z"/>
|
|
18
|
+
<path class="st0" d="M10,6H3v7h1v1h7v-1h1v-7h-2ZM9,7v5h-1v-5h1ZM7,7v5h-1v-5h1ZM4,11v-4h1v5h-1v-1ZM11,8v4h-1v-5h1v1Z"/>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<path class="st0" d="M4,2h-1v1h2v-1h-1Z"/>
|
|
14
|
+
<path class="st0" d="M10,3v-1h-2v1h2Z"/>
|
|
15
|
+
<rect class="st0" x="10" y="3" width="1" height="1"/>
|
|
16
|
+
<rect class="st0" x="3" y="4" width="1" height="1"/>
|
|
17
|
+
<path class="st0" d="M8,4v-1h-3v1h2v1h2v-1h-1Z"/>
|
|
18
|
+
<path class="st0" d="M12,6v-2h-1v1h-2v1h2v1h2v-1h-1Z"/>
|
|
19
|
+
<rect class="st0" x="13" y="7" width="1" height="1"/>
|
|
20
|
+
<path class="st0" d="M11,9v3h-1v-5h-1v5h-1v-6H3v7h1v1h7v-1h1v-5h-1v1ZM7,7v5h-1v-5h1ZM4,11v-4h1v5h-1v-1Z"/>
|
|
21
|
+
</g>
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<path class="st0" d="M8,3h1v-1h-3v1h2Z"/>
|
|
14
|
+
<path class="st0" d="M12,4h-2v-1h-1v1h-3v-1h-1v1h-3v1h11v-1h-1Z"/>
|
|
15
|
+
<path class="st0" d="M10,6H3v7h1v1h7v-1h1v-7h-2ZM9,7v5h-1v-5h1ZM7,7v5h-1v-5h1ZM4,11v-4h1v5h-1v-1ZM11,8v4h-1v-5h1v1Z"/>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<path class="st0" d="M6,6v-3h1v-1h2v1h1v1h1v-2h-1v-1h-4v1h-1v5h1v-1Z"/>
|
|
14
|
+
<path class="st0" d="M12,8H3v5h1v1h8v-1h1v-5h-1ZM7,11v-1h3v1h-1v1h-2v-1Z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<path class="st0" d="M7,4h2v1h1v-2h-1v-1h-2v1h-1v2h1v-1Z"/>
|
|
14
|
+
<path class="st0" d="M13,11v-2h-1v-2h-1v-2h-1v3h-1v2h-2v-2h-1v-3h-1v2h-1v2h-1v2h-1v2h1v1h10v-1h1v-2h-1ZM8,13h-1v-2h2v2h-1Z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<path class="st0" d="M9,2v-1h-2v1h2Z"/>
|
|
14
|
+
<rect class="st0" x="6" y="2" width="1" height="1"/>
|
|
15
|
+
<rect class="st0" x="9" y="2" width="1" height="1"/>
|
|
16
|
+
<path class="st0" d="M6,4v-1h-1v2h1v-1Z"/>
|
|
17
|
+
<path class="st0" d="M10,5h1v-2h-1v2Z"/>
|
|
18
|
+
<path class="st0" d="M5,6v-1h-1v2h1v-1Z"/>
|
|
19
|
+
<path class="st0" d="M11,7h1v-2h-1v2Z"/>
|
|
20
|
+
<path class="st0" d="M4,8v-1h-1v2h1v-1Z"/>
|
|
21
|
+
<path class="st0" d="M12,9h1v-2h-1v2Z"/>
|
|
22
|
+
<path class="st0" d="M3,10v-1h-1v2h1v-1Z"/>
|
|
23
|
+
<path class="st0" d="M12,10v-1h-1v-2h-1v-2h-1v-2h-2v2h-1v2h-1v2h-1v2h-1v1h10v-1h-1v-1ZM7,6h2v3h-1v-1h-1v-2ZM8,11v-1h1v1h-1Z"/>
|
|
24
|
+
<path class="st0" d="M13,11h1v-2h-1v2Z"/>
|
|
25
|
+
<path class="st0" d="M2,11h-1v2h1v-2Z"/>
|
|
26
|
+
<path class="st0" d="M14,11v2h1v-2h-1Z"/>
|
|
27
|
+
<path class="st0" d="M12,13H2v1h12v-1h-2Z"/>
|
|
28
|
+
</g>
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<path class="st0" d="M9,3v-1h-2v1h2Z"/>
|
|
14
|
+
<path class="st0" d="M7,4v-1h-1v2h1v-1Z"/>
|
|
15
|
+
<path class="st0" d="M9,5h1v-2h-1v2Z"/>
|
|
16
|
+
<path class="st0" d="M6,6v-1h-1v2h1v-1Z"/>
|
|
17
|
+
<path class="st0" d="M7,6v3h1v1h1v-4h-2Z"/>
|
|
18
|
+
<path class="st0" d="M10,7h1v-2h-1v2Z"/>
|
|
19
|
+
<path class="st0" d="M5,8v-1h-1v2h1v-1Z"/>
|
|
20
|
+
<path class="st0" d="M11,9h1v-2h-1v2Z"/>
|
|
21
|
+
<path class="st0" d="M4,10v-1h-1v2h1v-1Z"/>
|
|
22
|
+
<path class="st0" d="M12,11h1v-2h-1v2Z"/>
|
|
23
|
+
<path class="st0" d="M3,11h-1v2h1v-2Z"/>
|
|
24
|
+
<rect class="st0" x="8" y="11" width="1" height="1"/>
|
|
25
|
+
<path class="st0" d="M13,11v2h1v-2h-1Z"/>
|
|
26
|
+
<path class="st0" d="M11,13H3v1h10v-1h-2Z"/>
|
|
27
|
+
</g>
|
|
28
|
+
</g>
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.0.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 123) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: currentColor;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<g id="Layer_1" shape-rendering="crispEdges">
|
|
12
|
+
<g>
|
|
13
|
+
<path class="st0" d="M13,5v1h-1v1h-1v-1h-1v-1h-1v-1h1v-1h1v-1h-2v1h-1v4h-1v1h-1v1h-1v1h-1v1h-1v1h1v1h1v-1h1v-1h1v-1h1v-1h1v-1h4v-1h1v-2h-1Z"/>
|
|
14
|
+
<path class="st0" d="M3,12h-1v2h2v-1h-1v-1Z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|