@mirohq/design-system-icons 0.8.1-checkbox.0 → 0.9.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/main.js +1226 -37
- package/dist/main.js.map +1 -1
- package/dist/module.js +1183 -38
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +89 -11
- package/package.json +4 -4
- package/react/arrow-arc-left.tsx +34 -0
- package/react/arrow-arc-right.tsx +34 -0
- package/react/arrow-bend-up-right.tsx +34 -0
- package/react/arrow-fat-up-right.tsx +31 -0
- package/react/arrow-up-circle.tsx +31 -0
- package/react/arrows-in-simple.tsx +34 -0
- package/react/arrows-out-cardinal.tsx +34 -0
- package/react/arrows-out-lines-horizontal.tsx +34 -0
- package/react/arrows-out-simple.tsx +34 -0
- package/react/chevron-down-double.tsx +34 -0
- package/react/chevron-left-double.tsx +34 -0
- package/react/chevron-right-double.tsx +34 -0
- package/react/chevron-up-double.tsx +34 -0
- package/react/chevron-up-down-line.tsx +34 -0
- package/react/chevron-up-down.tsx +34 -0
- package/react/circle-slash.tsx +33 -0
- package/react/cross-square.tsx +34 -0
- package/react/cursor-lines.tsx +31 -0
- package/react/dots-nine.tsx +25 -0
- package/react/dots-three.tsx +25 -0
- package/react/dots-two.tsx +25 -0
- package/react/download.tsx +34 -0
- package/react/export.tsx +34 -0
- package/react/grid.tsx +34 -0
- package/react/hand-pointing.tsx +31 -0
- package/react/index.ts +44 -0
- package/react/login.tsx +34 -0
- package/react/logout.tsx +34 -0
- package/react/navigation-arrow-lines.tsx +31 -0
- package/react/navigation-up-left-filled.tsx +31 -0
- package/react/navigation-up-left-slash.tsx +34 -0
- package/react/navigation-up-right.tsx +34 -0
- package/react/paper-plane-filled-right.tsx +27 -0
- package/react/paper-plane-tilt.tsx +34 -0
- package/react/rectangle-arrow-up-center.tsx +34 -0
- package/react/shuffle.tsx +34 -0
- package/react/star-filled.tsx +31 -0
- package/react/star.tsx +34 -0
- package/react/sticky-corners.tsx +1 -1
- package/react/stroke-1.tsx +34 -0
- package/react/stroke-2.tsx +34 -0
- package/react/stroke-3.tsx +34 -0
- package/react/stroke-4.tsx +34 -0
- package/react/stroke-5.tsx +34 -0
- package/react/stroke-6.tsx +34 -0
- package/react/tick-circle.tsx +31 -0
- package/svg/24/arrow-arc-left.svg +1 -0
- package/svg/24/arrow-arc-right.svg +1 -0
- package/svg/24/arrow-bend-up-right.svg +1 -0
- package/svg/24/arrow-fat-up-right.svg +1 -0
- package/svg/24/arrow-up-circle.svg +1 -0
- package/svg/24/arrows-in-simple.svg +1 -0
- package/svg/24/arrows-out-cardinal.svg +1 -0
- package/svg/24/arrows-out-lines-horizontal.svg +1 -0
- package/svg/24/arrows-out-simple.svg +1 -0
- package/svg/24/chevron-down-double.svg +1 -0
- package/svg/24/chevron-left-double.svg +1 -0
- package/svg/24/chevron-right-double.svg +1 -0
- package/svg/24/chevron-up-double.svg +1 -0
- package/svg/24/chevron-up-down-line.svg +1 -0
- package/svg/24/chevron-up-down.svg +1 -0
- package/svg/24/circle-slash.svg +1 -0
- package/svg/24/cross-square.svg +1 -0
- package/svg/24/cursor-lines.svg +1 -0
- package/svg/24/dots-nine.svg +1 -0
- package/svg/24/dots-three.svg +1 -0
- package/svg/24/dots-two.svg +1 -0
- package/svg/24/download.svg +1 -0
- package/svg/24/export.svg +1 -0
- package/svg/24/grid.svg +1 -0
- package/svg/24/hand-pointing.svg +1 -0
- package/svg/24/login.svg +1 -0
- package/svg/24/logout.svg +1 -0
- package/svg/24/navigation-arrow-lines.svg +1 -0
- package/svg/24/navigation-up-left-filled.svg +1 -0
- package/svg/24/navigation-up-left-slash.svg +1 -0
- package/svg/24/navigation-up-right.svg +1 -0
- package/svg/24/paper-plane-filled-right.svg +1 -0
- package/svg/24/paper-plane-tilt.svg +1 -0
- package/svg/24/rectangle-arrow-up-center.svg +1 -0
- package/svg/24/shuffle.svg +1 -0
- package/svg/24/star-filled.svg +1 -0
- package/svg/24/star.svg +1 -0
- package/svg/24/sticky-corners.svg +1 -1
- package/svg/24/stroke-1.svg +1 -0
- package/svg/24/stroke-2.svg +1 -0
- package/svg/24/stroke-3.svg +1 -0
- package/svg/24/stroke-4.svg +1 -0
- package/svg/24/stroke-5.svg +1 -0
- package/svg/24/stroke-6.svg +1 -0
- package/svg/24/tick-circle.svg +1 -0
- package/svg/meta.json +380 -7
package/react/index.ts
CHANGED
|
@@ -6,6 +6,9 @@ export { IconAlignCenterVertical } from './align-center-vertical'
|
|
|
6
6
|
export { IconAlignLeft } from './align-left'
|
|
7
7
|
export { IconAlignRight } from './align-right'
|
|
8
8
|
export { IconAlignTop } from './align-top'
|
|
9
|
+
export { IconArrowArcLeft } from './arrow-arc-left'
|
|
10
|
+
export { IconArrowArcRight } from './arrow-arc-right'
|
|
11
|
+
export { IconArrowBendUpRight } from './arrow-bend-up-right'
|
|
9
12
|
export { IconArrowBoxOut } from './arrow-box-out'
|
|
10
13
|
export { IconArrowClockwiseDownRight } from './arrow-clockwise-down-right'
|
|
11
14
|
export { IconArrowClockwiseUpLeft } from './arrow-clockwise-up-left'
|
|
@@ -15,13 +18,19 @@ export { IconArrowDownLeft } from './arrow-down-left'
|
|
|
15
18
|
export { IconArrowDownRight } from './arrow-down-right'
|
|
16
19
|
export { IconArrowDown } from './arrow-down'
|
|
17
20
|
export { IconArrowFatRight } from './arrow-fat-right'
|
|
21
|
+
export { IconArrowFatUpRight } from './arrow-fat-up-right'
|
|
18
22
|
export { IconArrowLeft } from './arrow-left'
|
|
19
23
|
export { IconArrowRight } from './arrow-right'
|
|
24
|
+
export { IconArrowUpCircle } from './arrow-up-circle'
|
|
20
25
|
export { IconArrowUpLeft } from './arrow-up-left'
|
|
21
26
|
export { IconArrowUpRight } from './arrow-up-right'
|
|
22
27
|
export { IconArrowUp } from './arrow-up'
|
|
23
28
|
export { IconArrowsClockwiseX } from './arrows-clockwise-x'
|
|
24
29
|
export { IconArrowsClockwiseY } from './arrows-clockwise-y'
|
|
30
|
+
export { IconArrowsInSimple } from './arrows-in-simple'
|
|
31
|
+
export { IconArrowsOutCardinal } from './arrows-out-cardinal'
|
|
32
|
+
export { IconArrowsOutLinesHorizontal } from './arrows-out-lines-horizontal'
|
|
33
|
+
export { IconArrowsOutSimple } from './arrows-out-simple'
|
|
25
34
|
export { IconArticle } from './article'
|
|
26
35
|
export { IconAt } from './at'
|
|
27
36
|
export { IconBarThree } from './bar-three'
|
|
@@ -50,13 +59,20 @@ export { IconChatTwo } from './chat-two'
|
|
|
50
59
|
export { IconChat } from './chat'
|
|
51
60
|
export { IconCheckMark } from './check-mark'
|
|
52
61
|
export { IconCheckboardSquareCentered } from './checkboard-square-centered'
|
|
62
|
+
export { IconChevronDownDouble } from './chevron-down-double'
|
|
53
63
|
export { IconChevronDown } from './chevron-down'
|
|
64
|
+
export { IconChevronLeftDouble } from './chevron-left-double'
|
|
54
65
|
export { IconChevronLeft } from './chevron-left'
|
|
66
|
+
export { IconChevronRightDouble } from './chevron-right-double'
|
|
55
67
|
export { IconChevronRight } from './chevron-right'
|
|
68
|
+
export { IconChevronUpDouble } from './chevron-up-double'
|
|
69
|
+
export { IconChevronUpDownLine } from './chevron-up-down-line'
|
|
70
|
+
export { IconChevronUpDown } from './chevron-up-down'
|
|
56
71
|
export { IconChevronUp } from './chevron-up'
|
|
57
72
|
export { IconCircleCorners } from './circle-corners'
|
|
58
73
|
export { IconCircleMotionX } from './circle-motion-x'
|
|
59
74
|
export { IconCircleNotch } from './circle-notch'
|
|
75
|
+
export { IconCircleSlash } from './circle-slash'
|
|
60
76
|
export { IconCircle } from './circle'
|
|
61
77
|
export { IconCirclesConnected } from './circles-connected'
|
|
62
78
|
export { IconClockCounterClockwiseSimple } from './clock-counter-clockwise-simple'
|
|
@@ -71,9 +87,11 @@ export { IconCornersThreeEyeOpen } from './corners-three-eye-open'
|
|
|
71
87
|
export { IconCreditCard } from './credit-card'
|
|
72
88
|
export { IconCrop } from './crop'
|
|
73
89
|
export { IconCrossCircle } from './cross-circle'
|
|
90
|
+
export { IconCrossSquare } from './cross-square'
|
|
74
91
|
export { IconCross } from './cross'
|
|
75
92
|
export { IconCube } from './cube'
|
|
76
93
|
export { IconCursorFilled } from './cursor-filled'
|
|
94
|
+
export { IconCursorLines } from './cursor-lines'
|
|
77
95
|
export { IconCursorText } from './cursor-text'
|
|
78
96
|
export { IconCursor } from './cursor'
|
|
79
97
|
export { IconCurveSquareCircleArrow } from './curve-square-circle-arrow'
|
|
@@ -83,9 +101,14 @@ export { IconDashSquareDashHorizontal } from './dash-square-dash-horizontal'
|
|
|
83
101
|
export { IconDashSquareDashVertical } from './dash-square-dash-vertical'
|
|
84
102
|
export { IconDistributeHorizontal } from './distribute-horizontal'
|
|
85
103
|
export { IconDistributeVertical } from './distribute-vertical'
|
|
104
|
+
export { IconDotsNine } from './dots-nine'
|
|
105
|
+
export { IconDotsThree } from './dots-three'
|
|
106
|
+
export { IconDotsTwo } from './dots-two'
|
|
107
|
+
export { IconDownload } from './download'
|
|
86
108
|
export { IconEnvelope } from './envelope'
|
|
87
109
|
export { IconEraser } from './eraser'
|
|
88
110
|
export { IconExclamationPointCircle } from './exclamation-point-circle'
|
|
111
|
+
export { IconExport } from './export'
|
|
89
112
|
export { IconEyeClosedDotsFourFrameBroken } from './eye-closed-dots-four-frame-broken'
|
|
90
113
|
export { IconEyeClosed } from './eye-closed'
|
|
91
114
|
export { IconEyeOpenLineFrameBroken } from './eye-open-line-frame-broken'
|
|
@@ -105,7 +128,9 @@ export { IconGlobe } from './globe'
|
|
|
105
128
|
export { IconGraduationCap } from './graduation-cap'
|
|
106
129
|
export { IconGridFour } from './grid-four'
|
|
107
130
|
export { IconGridSix } from './grid-six'
|
|
131
|
+
export { IconGrid } from './grid'
|
|
108
132
|
export { IconHandFilled } from './hand-filled'
|
|
133
|
+
export { IconHandPointing } from './hand-pointing'
|
|
109
134
|
export { IconHand } from './hand'
|
|
110
135
|
export { IconHighlighterUnderline } from './highlighter-underline'
|
|
111
136
|
export { IconHighlighter } from './highlighter'
|
|
@@ -135,6 +160,8 @@ export { IconListBullets } from './list-bullets'
|
|
|
135
160
|
export { IconListNumbers } from './list-numbers'
|
|
136
161
|
export { IconLockClosed } from './lock-closed'
|
|
137
162
|
export { IconLockOpen } from './lock-open'
|
|
163
|
+
export { IconLogin } from './login'
|
|
164
|
+
export { IconLogout } from './logout'
|
|
138
165
|
export { IconMagnet } from './magnet'
|
|
139
166
|
export { IconMagnifyingGlass } from './magnifying-glass'
|
|
140
167
|
export { IconMap } from './map'
|
|
@@ -146,6 +173,10 @@ export { IconMonitorPause } from './monitor-pause'
|
|
|
146
173
|
export { IconMonitorPlay } from './monitor-play'
|
|
147
174
|
export { IconMonitorStop } from './monitor-stop'
|
|
148
175
|
export { IconMouse } from './mouse'
|
|
176
|
+
export { IconNavigationArrowLines } from './navigation-arrow-lines'
|
|
177
|
+
export { IconNavigationUpLeftFilled } from './navigation-up-left-filled'
|
|
178
|
+
export { IconNavigationUpLeftSlash } from './navigation-up-left-slash'
|
|
179
|
+
export { IconNavigationUpRight } from './navigation-up-right'
|
|
149
180
|
export { IconNext } from './next'
|
|
150
181
|
export { IconNodeLinesCurved } from './node-lines-curved'
|
|
151
182
|
export { IconNodeLinesHorizontal } from './node-lines-horizontal'
|
|
@@ -154,6 +185,8 @@ export { IconNodePlus } from './node-plus'
|
|
|
154
185
|
export { IconNodesConnected } from './nodes-connected'
|
|
155
186
|
export { IconNodesConnectionsThree } from './nodes-connections-three'
|
|
156
187
|
export { IconNoteMagnifyingGlass } from './note-magnifying-glass'
|
|
188
|
+
export { IconPaperPlaneFilledRight } from './paper-plane-filled-right'
|
|
189
|
+
export { IconPaperPlaneTilt } from './paper-plane-tilt'
|
|
157
190
|
export { IconParallelogram } from './parallelogram'
|
|
158
191
|
export { IconPauseCircle } from './pause-circle'
|
|
159
192
|
export { IconPause } from './pause'
|
|
@@ -180,6 +213,7 @@ export { IconProhibit } from './prohibit'
|
|
|
180
213
|
export { IconPushPin } from './push-pin'
|
|
181
214
|
export { IconQuestionMarkCircle } from './question-mark-circle'
|
|
182
215
|
export { IconQuestionMark } from './question-mark'
|
|
216
|
+
export { IconRectangleArrowUpCenter } from './rectangle-arrow-up-center'
|
|
183
217
|
export { IconRectangleDashLines } from './rectangle-dash-lines'
|
|
184
218
|
export { IconRectangleDotLinePen } from './rectangle-dot-line-pen'
|
|
185
219
|
export { IconRectanglePlayStack } from './rectangle-play-stack'
|
|
@@ -198,6 +232,7 @@ export { IconScrollbarXy } from './scrollbar-xy'
|
|
|
198
232
|
export { IconShapes } from './shapes'
|
|
199
233
|
export { IconShieldCheck } from './shield-check'
|
|
200
234
|
export { IconShieldLock } from './shield-lock'
|
|
235
|
+
export { IconShuffle } from './shuffle'
|
|
201
236
|
export { IconSidebarClosed } from './sidebar-closed'
|
|
202
237
|
export { IconSidebarOpen } from './sidebar-open'
|
|
203
238
|
export { IconSlidersX } from './sliders-x'
|
|
@@ -228,12 +263,20 @@ export { IconSquaresTwoOverlap } from './squares-two-overlap'
|
|
|
228
263
|
export { IconSquaresUngroup } from './squares-ungroup'
|
|
229
264
|
export { IconSquaresUnmerge } from './squares-unmerge'
|
|
230
265
|
export { IconStack } from './stack'
|
|
266
|
+
export { IconStarFilled } from './star-filled'
|
|
267
|
+
export { IconStar } from './star'
|
|
231
268
|
export { IconStickyCorners } from './sticky-corners'
|
|
232
269
|
export { IconStickyNoteStack } from './sticky-note-stack'
|
|
233
270
|
export { IconStickyNoteWide } from './sticky-note-wide'
|
|
234
271
|
export { IconStickyNote } from './sticky-note'
|
|
235
272
|
export { IconStickyNotesTwo } from './sticky-notes-two'
|
|
236
273
|
export { IconStopCircle } from './stop-circle'
|
|
274
|
+
export { IconStroke1 } from './stroke-1'
|
|
275
|
+
export { IconStroke2 } from './stroke-2'
|
|
276
|
+
export { IconStroke3 } from './stroke-3'
|
|
277
|
+
export { IconStroke4 } from './stroke-4'
|
|
278
|
+
export { IconStroke5 } from './stroke-5'
|
|
279
|
+
export { IconStroke6 } from './stroke-6'
|
|
237
280
|
export { IconTag } from './tag'
|
|
238
281
|
export { IconTextAUnderline } from './text-a-underline'
|
|
239
282
|
export { IconTextAlignCenter } from './text-align-center'
|
|
@@ -252,6 +295,7 @@ export { IconTextStyles } from './text-styles'
|
|
|
252
295
|
export { IconTextT } from './text-t'
|
|
253
296
|
export { IconTextUUnderlined } from './text-u-underlined'
|
|
254
297
|
export { IconThumbsUp } from './thumbs-up'
|
|
298
|
+
export { IconTickCircle } from './tick-circle'
|
|
255
299
|
export { IconTicket } from './ticket'
|
|
256
300
|
export { IconTimer } from './timer'
|
|
257
301
|
export { IconTrackpad } from './trackpad'
|
package/react/login.tsx
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconLogin: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M13 3h8v18h-8M3 12h12m0 0-3-3m3 3-3 3'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
package/react/logout.tsx
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconLogout: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M11 3H3v18h8m-2-9h12m0 0-3-3m3 3-3 3'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconNavigationArrowLines: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<path
|
|
20
|
+
stroke='currentColor'
|
|
21
|
+
strokeLinecap='round'
|
|
22
|
+
strokeLinejoin='round'
|
|
23
|
+
strokeWidth={2}
|
|
24
|
+
d='M11 4h10m-6 4h2M4.406 6.069l9.434 9.245c.315.309.136.874-.289.909H8.5a.468.468 0 0 0-.285.13l-3.408 3.71c-.312.3-.807.06-.807-.391V6.262c0-.227.25-.346.406-.193Z'
|
|
25
|
+
/>,
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M13.84 15.315 4.407 6.069C4.25 5.916 4 6.035 4 6.262v13.41c0 .451.495.69.807.39l3.408-3.709a.468.468 0 0 1 .285-.13h5.051c.425-.035.604-.6.29-.908Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconNavigationUpLeftFilled: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<path
|
|
20
|
+
stroke='currentColor'
|
|
21
|
+
strokeLinecap='round'
|
|
22
|
+
strokeLinejoin='round'
|
|
23
|
+
strokeWidth={2}
|
|
24
|
+
d='M20.536 9.963 3.456 3.026c-.282-.114-.545.165-.427.454l6.98 17.058c.235.574 1.003.626 1.254.084l2.5-6.46a.65.65 0 0 1 .302-.313l6.568-2.583c.533-.261.473-1.072-.097-1.303Z'
|
|
25
|
+
/>,
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M20.536 9.963 3.456 3.026c-.282-.114-.545.165-.427.454l6.98 17.058c.235.574 1.003.626 1.254.084l2.5-6.46a.65.65 0 0 1 .302-.313l6.568-2.583c.533-.261.473-1.072-.097-1.303Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconNavigationUpLeftSlash: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='m7.897 15.375 2.112 5.163c.235.574 1.003.626 1.254.084l2.5-6.46a.65.65 0 0 1 .302-.313l6.568-2.583c.533-.261.473-1.072-.097-1.303l-5.09-2.067M5.594 9.75 3.029 3.48c-.118-.289.145-.568.427-.454L9.75 5.583M3 19.875 19.875 3'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconNavigationUpRight: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='m14.037 20.536 6.937-17.08c.114-.282-.165-.545-.454-.427l-17.058 6.98c-.574.235-.626 1.003-.084 1.254l6.46 2.5a.65.65 0 0 1 .313.302l2.583 6.568c.261.533 1.072.473 1.303-.097Z'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconPaperPlaneFilledRight: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<path
|
|
20
|
+
fill='currentColor'
|
|
21
|
+
fillRule='evenodd'
|
|
22
|
+
d='M3.421 2.595c-.847-.39-1.72.49-1.322 1.334L5 11h3.5c1.5 0 1.5 1.873 0 1.873H5l-2.901 7.056c-.397.843.475 1.723 1.322 1.334L21.6 12.984c.776-.356.776-1.627 0-1.984L3.42 2.595Z'
|
|
23
|
+
clipRule='evenodd'
|
|
24
|
+
/>,
|
|
25
|
+
<path stroke='currentColor' strokeWidth={4} d='M22 21h.001' />
|
|
26
|
+
)
|
|
27
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconPaperPlaneTilt: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M10 14 21 3M10 14l4 8 7-19M10 14l-8-4 19-7'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconRectangleArrowUpCenter: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M3 10V4a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v6m-9 10V9m0 0 4 4.5M12 9l-4 4.5'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconShuffle: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M3 6s2.464-.282 4 0c5.761 1.06 3.282 10.73 9 12 1.906.424 5 0 5 0m0 0-3-3m3 3-3 3M3 18s2.464.282 4 0c.864-.159 1.542-.511 2.091-1M21 6s-3.094-.424-5 0a4.333 4.333 0 0 0-2 1.012M21 6l-3 3m3-3-3-3'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconStarFilled: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<path
|
|
20
|
+
stroke='currentColor'
|
|
21
|
+
strokeLinecap='round'
|
|
22
|
+
strokeLinejoin='round'
|
|
23
|
+
strokeWidth={2}
|
|
24
|
+
d='m15 9-2.776-5.553a.25.25 0 0 0-.448 0L9 9l-5.554.926a.25.25 0 0 0-.145.412L7 14.5l-.926 6.022a.25.25 0 0 0 .358.262L12 18l5.568 2.784a.25.25 0 0 0 .358-.262L17 14.5l3.7-4.162a.25.25 0 0 0-.146-.412L15 9Z'
|
|
25
|
+
/>,
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='m15 9-3-6-3 6-6 1 4 4.5L6 21l6-3 6 3-1-6.5 4-4.5-6-1Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
)
|
package/react/star.tsx
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconStar: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='m15 9-2.776-5.553a.25.25 0 0 0-.448 0L9 9l-5.554.926a.25.25 0 0 0-.145.412L7 14.5l-.926 6.022a.25.25 0 0 0 .358.262L12 18l5.568 2.784a.25.25 0 0 0 .358-.262L17 14.5l3.7-4.162a.25.25 0 0 0-.146-.412L15 9Z'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
package/react/sticky-corners.tsx
CHANGED
|
@@ -22,7 +22,7 @@ export const IconStickyCorners: ForwardRefExoticComponent<
|
|
|
22
22
|
strokeLinecap='round'
|
|
23
23
|
strokeLinejoin='round'
|
|
24
24
|
strokeWidth={2}
|
|
25
|
-
d='M3 7V3h4m10 0h4v4m0 10v4h-4M7 21H3v-
|
|
25
|
+
d='M3 7V3h4m10 0h4v4m0 10v4h-4M7 21H3v-4m13-4V8H8v8h5m3-3-3 3m3-3h-3v3'
|
|
26
26
|
/>
|
|
27
27
|
</g>,
|
|
28
28
|
<defs>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconStroke1: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M5.106 17.81 18.894 6.24'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconStroke2: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={4}
|
|
25
|
+
d='M5.872 17.167 18.128 6.883'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|