@wallarm-org/design-system 0.19.1 → 0.20.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/dist/icons/Sheet.d.ts +3 -0
- package/dist/icons/Sheet.js +63 -0
- package/dist/icons/Zap.d.ts +3 -0
- package/dist/icons/Zap.js +16 -0
- package/dist/icons/index.d.ts +2 -0
- package/dist/icons/index.js +3 -1
- package/dist/metadata/components.json +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { SvgIcon } from "./SvgIcon.js";
|
|
3
|
+
const Sheet = (props)=>/*#__PURE__*/ jsxs(SvgIcon, {
|
|
4
|
+
...props,
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
children: [
|
|
7
|
+
/*#__PURE__*/ jsx("rect", {
|
|
8
|
+
width: "18",
|
|
9
|
+
height: "18",
|
|
10
|
+
x: "3",
|
|
11
|
+
y: "3",
|
|
12
|
+
rx: "2",
|
|
13
|
+
ry: "2",
|
|
14
|
+
stroke: "currentColor",
|
|
15
|
+
strokeWidth: "2",
|
|
16
|
+
strokeLinecap: "round",
|
|
17
|
+
strokeLinejoin: "round",
|
|
18
|
+
fill: "none"
|
|
19
|
+
}),
|
|
20
|
+
/*#__PURE__*/ jsx("line", {
|
|
21
|
+
x1: "3",
|
|
22
|
+
x2: "21",
|
|
23
|
+
y1: "9",
|
|
24
|
+
y2: "9",
|
|
25
|
+
stroke: "currentColor",
|
|
26
|
+
strokeWidth: "2",
|
|
27
|
+
strokeLinecap: "round",
|
|
28
|
+
strokeLinejoin: "round"
|
|
29
|
+
}),
|
|
30
|
+
/*#__PURE__*/ jsx("line", {
|
|
31
|
+
x1: "3",
|
|
32
|
+
x2: "21",
|
|
33
|
+
y1: "15",
|
|
34
|
+
y2: "15",
|
|
35
|
+
stroke: "currentColor",
|
|
36
|
+
strokeWidth: "2",
|
|
37
|
+
strokeLinecap: "round",
|
|
38
|
+
strokeLinejoin: "round"
|
|
39
|
+
}),
|
|
40
|
+
/*#__PURE__*/ jsx("line", {
|
|
41
|
+
x1: "9",
|
|
42
|
+
x2: "9",
|
|
43
|
+
y1: "9",
|
|
44
|
+
y2: "21",
|
|
45
|
+
stroke: "currentColor",
|
|
46
|
+
strokeWidth: "2",
|
|
47
|
+
strokeLinecap: "round",
|
|
48
|
+
strokeLinejoin: "round"
|
|
49
|
+
}),
|
|
50
|
+
/*#__PURE__*/ jsx("line", {
|
|
51
|
+
x1: "15",
|
|
52
|
+
x2: "15",
|
|
53
|
+
y1: "9",
|
|
54
|
+
y2: "21",
|
|
55
|
+
stroke: "currentColor",
|
|
56
|
+
strokeWidth: "2",
|
|
57
|
+
strokeLinecap: "round",
|
|
58
|
+
strokeLinejoin: "round"
|
|
59
|
+
})
|
|
60
|
+
]
|
|
61
|
+
});
|
|
62
|
+
Sheet.displayName = 'SheetIcon';
|
|
63
|
+
export { Sheet };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { SvgIcon } from "./SvgIcon.js";
|
|
3
|
+
const Zap = (props)=>/*#__PURE__*/ jsx(SvgIcon, {
|
|
4
|
+
...props,
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
7
|
+
d: "M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",
|
|
8
|
+
stroke: "currentColor",
|
|
9
|
+
strokeWidth: "2",
|
|
10
|
+
strokeLinecap: "round",
|
|
11
|
+
strokeLinejoin: "round",
|
|
12
|
+
fill: "none"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
Zap.displayName = 'ZapIcon';
|
|
16
|
+
export { Zap };
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -158,6 +158,7 @@ export { RefreshCcw } from './RefreshCcw';
|
|
|
158
158
|
export { RefreshCwOff } from './RefreshCwOff';
|
|
159
159
|
export { Search } from './Search';
|
|
160
160
|
export { Settings } from './Settings';
|
|
161
|
+
export { Sheet } from './Sheet';
|
|
161
162
|
export { Shift } from './Shift';
|
|
162
163
|
export { Skull } from './Skull';
|
|
163
164
|
export { SlidersHorizontal } from './SlidersHorizontal';
|
|
@@ -173,5 +174,6 @@ export { Undo2 } from './Undo2';
|
|
|
173
174
|
export { UndoDot } from './UndoDot';
|
|
174
175
|
export { Wrench } from './Wrench';
|
|
175
176
|
export { X } from './X';
|
|
177
|
+
export { Zap } from './Zap';
|
|
176
178
|
export { ZoomIn } from './ZoomIn';
|
|
177
179
|
export { ZoomOut } from './ZoomOut';
|
package/dist/icons/index.js
CHANGED
|
@@ -158,6 +158,7 @@ import { RefreshCcw } from "./RefreshCcw.js";
|
|
|
158
158
|
import { RefreshCwOff } from "./RefreshCwOff.js";
|
|
159
159
|
import { Search } from "./Search.js";
|
|
160
160
|
import { Settings } from "./Settings.js";
|
|
161
|
+
import { Sheet } from "./Sheet.js";
|
|
161
162
|
import { Shift } from "./Shift.js";
|
|
162
163
|
import { Skull } from "./Skull.js";
|
|
163
164
|
import { SlidersHorizontal } from "./SlidersHorizontal.js";
|
|
@@ -172,6 +173,7 @@ import { Undo2 } from "./Undo2.js";
|
|
|
172
173
|
import { UndoDot } from "./UndoDot.js";
|
|
173
174
|
import { Wrench } from "./Wrench.js";
|
|
174
175
|
import { X } from "./X.js";
|
|
176
|
+
import { Zap } from "./Zap.js";
|
|
175
177
|
import { ZoomIn } from "./ZoomIn.js";
|
|
176
178
|
import { ZoomOut } from "./ZoomOut.js";
|
|
177
|
-
export { Activity, Alt, ArrowBigUp, ArrowBigUpDash, ArrowDown, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowRight, ArrowUp, ArrowUpLeft, ArrowUpRight, Calendar, CalendarCheck, CalendarCheck2, CalendarClock, CalendarCog, CalendarDays, CalendarFold, CalendarHeart, CalendarMinus, CalendarMinus2, CalendarOff, CalendarPlus, CalendarPlus2, CalendarRange, CalendarSearch, CalendarX, CalendarX2, Check, CheckCheck, CheckboxIndeterminate, ChevronDown, ChevronFirst, ChevronLast, ChevronLeft, ChevronRight, ChevronUp, ChevronsDown, ChevronsLeft, ChevronsRight, ChevronsUp, Circle, CircleArrowDown, CircleArrowLeft, CircleArrowOutDownLeft, CircleArrowOutDownRight, CircleArrowOutUpLeft, CircleArrowOutUpRight, CircleArrowRight, CircleArrowUp, CircleCheck, CircleCheckBig, CircleChevronDown, CircleChevronLeft, CircleChevronRight, CircleChevronUp, CircleDashed, CircleDotDashed, CircleEllipsis, CircleHelp, CirclePlus, Clock, Command, Copy, CornerUpLeft, CornerUpRight, Ctrl, Dot, Earth, EarthLock, Ellipsis, EyeOff, Filter, FilterX, Folder, FunnelPlus, GitCommitHorizontal, GitCommitVertical, GitCompare, GitCompareArrows, GitFork, GitGraph, GitMerge, GitPullRequest, GitPullRequestArrow, GitPullRequestClosed, GitPullRequestCreate, GitPullRequestCreateArrow, GitPullRequestDraft, Globe, GlobeLock, GripVertical, History, Home, Info, KeyRound, KeySquare, Keyboard, Layers, Layers2, Layers3, LayoutDashboard, LayoutGrid, LayoutList, LayoutPanelLeft, LayoutPanelTop, LayoutTemplate, LibraryBig, Link, Loader, LoaderCircle, Lock, LockOpen, Maximize, Maximize2, Megaphone, MegaphoneOff, MessageSquare, MessageSquareText, MessageSquareWarning, MessageSquareX, MessagesSquare, Minus, Mouse, Move3D, MoveDown, MoveUp, MoveVertical, NotebookPen, NotepadText, OctagonAlert, PanelBottom, PanelBottomOpen, PanelRight, PanelRightAnimated, PanelRightClose, PanelRightDashed, PanelRightOpen, Paperclip, Pen, PenLine, PenOff, PenTool, Pencil, PencilLine, PencilOff, PencilRuler, Pentagon, Pin, PinOff, Plus, Quote, Redo, Redo2, RedoDot, RefreshCcw, RefreshCwOff, Search, Settings, Shift, Skull, SlidersHorizontal, SlidersVertical, Space, SquareArrowOutUpRight, Trash, Trash2, TriangleAlert, Undo, Undo2, UndoDot, Wrench, X, ZoomIn, ZoomOut };
|
|
179
|
+
export { Activity, Alt, ArrowBigUp, ArrowBigUpDash, ArrowDown, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowRight, ArrowUp, ArrowUpLeft, ArrowUpRight, Calendar, CalendarCheck, CalendarCheck2, CalendarClock, CalendarCog, CalendarDays, CalendarFold, CalendarHeart, CalendarMinus, CalendarMinus2, CalendarOff, CalendarPlus, CalendarPlus2, CalendarRange, CalendarSearch, CalendarX, CalendarX2, Check, CheckCheck, CheckboxIndeterminate, ChevronDown, ChevronFirst, ChevronLast, ChevronLeft, ChevronRight, ChevronUp, ChevronsDown, ChevronsLeft, ChevronsRight, ChevronsUp, Circle, CircleArrowDown, CircleArrowLeft, CircleArrowOutDownLeft, CircleArrowOutDownRight, CircleArrowOutUpLeft, CircleArrowOutUpRight, CircleArrowRight, CircleArrowUp, CircleCheck, CircleCheckBig, CircleChevronDown, CircleChevronLeft, CircleChevronRight, CircleChevronUp, CircleDashed, CircleDotDashed, CircleEllipsis, CircleHelp, CirclePlus, Clock, Command, Copy, CornerUpLeft, CornerUpRight, Ctrl, Dot, Earth, EarthLock, Ellipsis, EyeOff, Filter, FilterX, Folder, FunnelPlus, GitCommitHorizontal, GitCommitVertical, GitCompare, GitCompareArrows, GitFork, GitGraph, GitMerge, GitPullRequest, GitPullRequestArrow, GitPullRequestClosed, GitPullRequestCreate, GitPullRequestCreateArrow, GitPullRequestDraft, Globe, GlobeLock, GripVertical, History, Home, Info, KeyRound, KeySquare, Keyboard, Layers, Layers2, Layers3, LayoutDashboard, LayoutGrid, LayoutList, LayoutPanelLeft, LayoutPanelTop, LayoutTemplate, LibraryBig, Link, Loader, LoaderCircle, Lock, LockOpen, Maximize, Maximize2, Megaphone, MegaphoneOff, MessageSquare, MessageSquareText, MessageSquareWarning, MessageSquareX, MessagesSquare, Minus, Mouse, Move3D, MoveDown, MoveUp, MoveVertical, NotebookPen, NotepadText, OctagonAlert, PanelBottom, PanelBottomOpen, PanelRight, PanelRightAnimated, PanelRightClose, PanelRightDashed, PanelRightOpen, Paperclip, Pen, PenLine, PenOff, PenTool, Pencil, PencilLine, PencilOff, PencilRuler, Pentagon, Pin, PinOff, Plus, Quote, Redo, Redo2, RedoDot, RefreshCcw, RefreshCwOff, Search, Settings, Sheet, Shift, Skull, SlidersHorizontal, SlidersVertical, Space, SquareArrowOutUpRight, Trash, Trash2, TriangleAlert, Undo, Undo2, UndoDot, Wrench, X, Zap, ZoomIn, ZoomOut };
|