@mirohq/design-system-icons 0.27.1-themes.0 → 0.28.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 +186 -3
- package/dist/main.js.map +1 -1
- package/dist/module.js +180 -4
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +125 -123
- package/package.json +4 -4
- package/react/heart-filled.tsx +3 -3
- package/react/index.ts +7 -0
- package/react/rectangle-portrait-dash-square-top-center.tsx +32 -0
- package/react/rectangle-portrait-dash-square-top-left.tsx +32 -0
- package/react/rectangle-portrait-dash.tsx +32 -0
- package/react/rectangle-portrait-filled.tsx +33 -0
- package/react/rectangle-portrait-square-top-left.tsx +32 -0
- package/react/rectangle-portrait.tsx +32 -0
- package/react/social-drawio.tsx +36 -0
- package/svg/24/heart-filled.svg +1 -1
- package/svg/24/rectangle-portrait-dash-square-top-center.svg +2 -0
- package/svg/24/rectangle-portrait-dash-square-top-left.svg +2 -0
- package/svg/24/rectangle-portrait-dash.svg +2 -0
- package/svg/24/rectangle-portrait-filled.svg +2 -0
- package/svg/24/rectangle-portrait-square-top-left.svg +2 -0
- package/svg/24/rectangle-portrait.svg +2 -0
- package/svg/24/social-drawio.svg +2 -0
- package/svg/meta.json +115 -23
package/dist/types.d.ts
CHANGED
|
@@ -4,15 +4,14 @@ import * as _stitches_react_types_css_util from '@stitches/react/types/css-util'
|
|
|
4
4
|
import * as react from 'react';
|
|
5
5
|
import { ForwardRefExoticComponent, RefAttributes, ComponentPropsWithRef } from 'react';
|
|
6
6
|
import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
|
|
7
|
-
import * as packages_themes_src_alias_keys from 'packages/themes/src/alias-keys';
|
|
8
7
|
import { iconSymbol } from '@mirohq/design-system-base-icon';
|
|
9
8
|
|
|
10
9
|
declare const StyledIcon: ForwardRefExoticComponent<Omit<Omit<{
|
|
11
|
-
color?:
|
|
10
|
+
color?: "background-danger" | "background-danger-hover" | "background-danger-prominent" | "background-danger-prominent-active" | "background-danger-prominent-hover" | "background-neutrals" | "background-neutrals-container" | "background-neutrals-controls-disabled" | "background-neutrals-disabled" | "background-neutrals-inactive" | "background-neutrals-inactive-hover" | "background-neutrals-inverted" | "background-neutrals-inverted-subtle" | "background-neutrals-page" | "background-neutrals-page-subtle" | "background-neutrals-scrolls" | "background-neutrals-scrolls-hover" | "background-neutrals-subtle" | "background-neutrals-subtle-active" | "background-neutrals-subtle-hover" | "background-primary-prominent" | "background-primary-prominent-active" | "background-primary-prominent-hover" | "background-primary-prominent-selected" | "background-primary-subtle" | "background-primary-subtle-active" | "background-primary-subtle-hover" | "background-primary-subtle-selected" | "background-success" | "background-warning-prominent" | "background-warning-subtle" | "text-danger" | "text-danger-active" | "text-danger-hover" | "text-danger-inverted" | "text-neutrals" | "text-neutrals-disabled" | "text-neutrals-inverted" | "text-neutrals-placeholder" | "text-neutrals-placeholder-only" | "text-neutrals-subtle" | "text-neutrals-subtle-active" | "text-neutrals-subtle-hover" | "text-primary" | "text-primary-active" | "text-primary-hover" | "text-primary-inverted" | "text-primary-inverted-subtle" | "text-primary-selected" | "text-success" | "text-warning" | "icon-danger" | "icon-danger-active" | "icon-danger-hover" | "icon-danger-inverted" | "icon-neutrals" | "icon-neutrals-disabled" | "icon-neutrals-inactive" | "icon-neutrals-inactive-hover" | "icon-neutrals-inverted" | "icon-neutrals-search" | "icon-neutrals-subtle" | "icon-neutrals-text" | "icon-primary" | "icon-primary-active" | "icon-primary-hover" | "icon-primary-inverted" | "icon-primary-selected" | "icon-success" | "icon-success-inverted" | "icon-warning" | "icon-warning-prominent" | "border-danger" | "border-danger-active" | "border-danger-hover" | "border-focus-inner" | "border-focus-middle" | "border-focus-outer" | "border-neutrals" | "border-neutrals-active" | "border-neutrals-controls" | "border-neutrals-controls-disabled" | "border-neutrals-disabled" | "border-neutrals-hover" | "border-neutrals-inverted" | "border-neutrals-subtle" | "border-neutrals-text-subtle" | "border-neutrals-text-subtle-active" | "border-neutrals-text-subtle-hover" | "border-primary" | "border-primary-active" | "border-primary-hover" | "border-primary-inverted" | "border-success" | "border-warning" | "blue-100" | "blue-200" | "blue-300" | "blue-400" | "blue-500" | "blue-600" | "blue-700" | "blue-800" | "blue-900" | "blue-1000" | "gray-100" | "gray-200" | "gray-300" | "gray-400" | "gray-500" | "gray-600" | "gray-700" | "gray-800" | "gray-900" | "indigo-100" | "indigo-200" | "indigo-300" | "indigo-400" | "indigo-500" | "indigo-600" | "indigo-700" | "indigo-800" | "indigo-900" | "red-100" | "red-200" | "red-300" | "red-400" | "red-500" | "red-600" | "red-700" | "red-800" | "red-900" | "yellow-100" | "yellow-200" | "yellow-300" | "yellow-400" | "yellow-500" | "yellow-600" | "yellow-700" | "yellow-800" | "yellow-900" | "green-100" | "green-200" | "green-300" | "green-400" | "green-500" | "green-600" | "green-700" | "green-800" | "green-900" | "black" | "white" | "transparent" | undefined;
|
|
12
11
|
size?: "small" | "medium" | "large" | undefined;
|
|
13
12
|
weight?: "bold" | "thin" | "normal" | undefined;
|
|
14
13
|
}, "size" | "weight" | "color"> & _stitches_react_types_styled_component.TransformProps<{
|
|
15
|
-
color?:
|
|
14
|
+
color?: "background-danger" | "background-danger-hover" | "background-danger-prominent" | "background-danger-prominent-active" | "background-danger-prominent-hover" | "background-neutrals" | "background-neutrals-container" | "background-neutrals-controls-disabled" | "background-neutrals-disabled" | "background-neutrals-inactive" | "background-neutrals-inactive-hover" | "background-neutrals-inverted" | "background-neutrals-inverted-subtle" | "background-neutrals-page" | "background-neutrals-page-subtle" | "background-neutrals-scrolls" | "background-neutrals-scrolls-hover" | "background-neutrals-subtle" | "background-neutrals-subtle-active" | "background-neutrals-subtle-hover" | "background-primary-prominent" | "background-primary-prominent-active" | "background-primary-prominent-hover" | "background-primary-prominent-selected" | "background-primary-subtle" | "background-primary-subtle-active" | "background-primary-subtle-hover" | "background-primary-subtle-selected" | "background-success" | "background-warning-prominent" | "background-warning-subtle" | "text-danger" | "text-danger-active" | "text-danger-hover" | "text-danger-inverted" | "text-neutrals" | "text-neutrals-disabled" | "text-neutrals-inverted" | "text-neutrals-placeholder" | "text-neutrals-placeholder-only" | "text-neutrals-subtle" | "text-neutrals-subtle-active" | "text-neutrals-subtle-hover" | "text-primary" | "text-primary-active" | "text-primary-hover" | "text-primary-inverted" | "text-primary-inverted-subtle" | "text-primary-selected" | "text-success" | "text-warning" | "icon-danger" | "icon-danger-active" | "icon-danger-hover" | "icon-danger-inverted" | "icon-neutrals" | "icon-neutrals-disabled" | "icon-neutrals-inactive" | "icon-neutrals-inactive-hover" | "icon-neutrals-inverted" | "icon-neutrals-search" | "icon-neutrals-subtle" | "icon-neutrals-text" | "icon-primary" | "icon-primary-active" | "icon-primary-hover" | "icon-primary-inverted" | "icon-primary-selected" | "icon-success" | "icon-success-inverted" | "icon-warning" | "icon-warning-prominent" | "border-danger" | "border-danger-active" | "border-danger-hover" | "border-focus-inner" | "border-focus-middle" | "border-focus-outer" | "border-neutrals" | "border-neutrals-active" | "border-neutrals-controls" | "border-neutrals-controls-disabled" | "border-neutrals-disabled" | "border-neutrals-hover" | "border-neutrals-inverted" | "border-neutrals-subtle" | "border-neutrals-text-subtle" | "border-neutrals-text-subtle-active" | "border-neutrals-text-subtle-hover" | "border-primary" | "border-primary-active" | "border-primary-hover" | "border-primary-inverted" | "border-success" | "border-warning" | "blue-100" | "blue-200" | "blue-300" | "blue-400" | "blue-500" | "blue-600" | "blue-700" | "blue-800" | "blue-900" | "blue-1000" | "gray-100" | "gray-200" | "gray-300" | "gray-400" | "gray-500" | "gray-600" | "gray-700" | "gray-800" | "gray-900" | "indigo-100" | "indigo-200" | "indigo-300" | "indigo-400" | "indigo-500" | "indigo-600" | "indigo-700" | "indigo-800" | "indigo-900" | "red-100" | "red-200" | "red-300" | "red-400" | "red-500" | "red-600" | "red-700" | "red-800" | "red-900" | "yellow-100" | "yellow-200" | "yellow-300" | "yellow-400" | "yellow-500" | "yellow-600" | "yellow-700" | "yellow-800" | "yellow-900" | "green-100" | "green-200" | "green-300" | "green-400" | "green-500" | "green-600" | "green-700" | "green-800" | "green-900" | "black" | "white" | "transparent" | undefined;
|
|
16
15
|
size?: "small" | "medium" | "large" | undefined;
|
|
17
16
|
weight?: "bold" | "thin" | "normal" | undefined;
|
|
18
17
|
}, {}> & _mirohq_design_system_stitches.SafeProps<Omit<Omit<react.SVGProps<SVGSVGElement>, "ref"> & {
|
|
@@ -28,7 +27,6 @@ declare const StyledIcon: ForwardRefExoticComponent<Omit<Omit<{
|
|
|
28
27
|
readonly lg: "4px";
|
|
29
28
|
};
|
|
30
29
|
colors: {
|
|
31
|
-
readonly black: any;
|
|
32
30
|
readonly 'blue-100': any;
|
|
33
31
|
readonly 'blue-200': any;
|
|
34
32
|
readonly 'blue-300': any;
|
|
@@ -48,15 +46,6 @@ declare const StyledIcon: ForwardRefExoticComponent<Omit<Omit<{
|
|
|
48
46
|
readonly 'gray-700': any;
|
|
49
47
|
readonly 'gray-800': any;
|
|
50
48
|
readonly 'gray-900': any;
|
|
51
|
-
readonly 'green-100': any;
|
|
52
|
-
readonly 'green-200': any;
|
|
53
|
-
readonly 'green-300': any;
|
|
54
|
-
readonly 'green-400': any;
|
|
55
|
-
readonly 'green-500': any;
|
|
56
|
-
readonly 'green-600': any;
|
|
57
|
-
readonly 'green-700': any;
|
|
58
|
-
readonly 'green-800': any;
|
|
59
|
-
readonly 'green-900': any;
|
|
60
49
|
readonly 'indigo-100': any;
|
|
61
50
|
readonly 'indigo-200': any;
|
|
62
51
|
readonly 'indigo-300': any;
|
|
@@ -75,8 +64,6 @@ declare const StyledIcon: ForwardRefExoticComponent<Omit<Omit<{
|
|
|
75
64
|
readonly 'red-700': any;
|
|
76
65
|
readonly 'red-800': any;
|
|
77
66
|
readonly 'red-900': any;
|
|
78
|
-
readonly transparent: any;
|
|
79
|
-
readonly white: any;
|
|
80
67
|
readonly 'yellow-100': any;
|
|
81
68
|
readonly 'yellow-200': any;
|
|
82
69
|
readonly 'yellow-300': any;
|
|
@@ -86,112 +73,113 @@ declare const StyledIcon: ForwardRefExoticComponent<Omit<Omit<{
|
|
|
86
73
|
readonly 'yellow-700': any;
|
|
87
74
|
readonly 'yellow-800': any;
|
|
88
75
|
readonly 'yellow-900': any;
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
76
|
+
readonly 'green-100': any;
|
|
77
|
+
readonly 'green-200': any;
|
|
78
|
+
readonly 'green-300': any;
|
|
79
|
+
readonly 'green-400': any;
|
|
80
|
+
readonly 'green-500': any;
|
|
81
|
+
readonly 'green-600': any;
|
|
82
|
+
readonly 'green-700': any;
|
|
83
|
+
readonly 'green-800': any;
|
|
84
|
+
readonly 'green-900': any;
|
|
85
|
+
readonly black: any;
|
|
86
|
+
readonly white: any;
|
|
87
|
+
readonly transparent: any;
|
|
88
|
+
readonly 'background-danger'?: any;
|
|
89
|
+
readonly 'background-danger-hover'?: any;
|
|
90
|
+
readonly 'background-danger-prominent'?: any;
|
|
91
|
+
readonly 'background-danger-prominent-active'?: any;
|
|
92
|
+
readonly 'background-danger-prominent-hover'?: any;
|
|
93
|
+
readonly 'background-neutrals'?: any;
|
|
94
|
+
readonly 'background-neutrals-container'?: any;
|
|
95
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
96
|
+
readonly 'background-neutrals-disabled'?: any;
|
|
97
|
+
readonly 'background-neutrals-inactive'?: any;
|
|
98
|
+
readonly 'background-neutrals-inactive-hover'?: any;
|
|
99
|
+
readonly 'background-neutrals-inverted'?: any;
|
|
100
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
101
|
+
readonly 'background-neutrals-page'?: any;
|
|
102
|
+
readonly 'background-neutrals-page-subtle'?: any;
|
|
103
|
+
readonly 'background-neutrals-scrolls'?: any;
|
|
104
|
+
readonly 'background-neutrals-scrolls-hover'?: any;
|
|
105
|
+
readonly 'background-neutrals-subtle'?: any;
|
|
106
|
+
readonly 'background-neutrals-subtle-active'?: any;
|
|
107
|
+
readonly 'background-neutrals-subtle-hover'?: any;
|
|
108
|
+
readonly 'background-primary-prominent'?: any;
|
|
109
|
+
readonly 'background-primary-prominent-active'?: any;
|
|
110
|
+
readonly 'background-primary-prominent-hover'?: any;
|
|
111
|
+
readonly 'background-primary-prominent-selected'?: any;
|
|
112
|
+
readonly 'background-primary-subtle'?: any;
|
|
113
|
+
readonly 'background-primary-subtle-active'?: any;
|
|
114
|
+
readonly 'background-primary-subtle-hover'?: any;
|
|
115
|
+
readonly 'background-primary-subtle-selected'?: any;
|
|
116
|
+
readonly 'background-success'?: any;
|
|
117
|
+
readonly 'background-warning-prominent'?: any;
|
|
118
|
+
readonly 'background-warning-subtle'?: any;
|
|
119
|
+
readonly 'text-danger'?: any;
|
|
120
|
+
readonly 'text-danger-active'?: any;
|
|
121
|
+
readonly 'text-danger-hover'?: any;
|
|
122
|
+
readonly 'text-danger-inverted'?: any;
|
|
123
|
+
readonly 'text-neutrals'?: any;
|
|
124
|
+
readonly 'text-neutrals-disabled'?: any;
|
|
125
|
+
readonly 'text-neutrals-inverted'?: any;
|
|
126
|
+
readonly 'text-neutrals-placeholder'?: any;
|
|
127
|
+
readonly 'text-neutrals-placeholder-only'?: any;
|
|
128
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
129
|
+
readonly 'text-neutrals-subtle-active'?: any;
|
|
130
|
+
readonly 'text-neutrals-subtle-hover'?: any;
|
|
131
|
+
readonly 'text-primary'?: any;
|
|
132
|
+
readonly 'text-primary-active'?: any;
|
|
133
|
+
readonly 'text-primary-hover'?: any;
|
|
134
|
+
readonly 'text-primary-inverted'?: any;
|
|
135
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
136
|
+
readonly 'text-primary-selected'?: any;
|
|
137
|
+
readonly 'text-success'?: any;
|
|
138
|
+
readonly 'text-warning'?: any;
|
|
139
|
+
readonly 'icon-danger'?: any;
|
|
140
|
+
readonly 'icon-danger-active'?: any;
|
|
141
|
+
readonly 'icon-danger-hover'?: any;
|
|
142
|
+
readonly 'icon-danger-inverted'?: any;
|
|
143
|
+
readonly 'icon-neutrals'?: any;
|
|
144
|
+
readonly 'icon-neutrals-disabled'?: any;
|
|
145
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
146
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
147
|
+
readonly 'icon-neutrals-inverted'?: any;
|
|
148
|
+
readonly 'icon-neutrals-search'?: any;
|
|
149
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
150
|
+
readonly 'icon-neutrals-text'?: any;
|
|
151
|
+
readonly 'icon-primary'?: any;
|
|
152
|
+
readonly 'icon-primary-active'?: any;
|
|
153
|
+
readonly 'icon-primary-hover'?: any;
|
|
154
|
+
readonly 'icon-primary-inverted'?: any;
|
|
155
|
+
readonly 'icon-primary-selected'?: any;
|
|
156
|
+
readonly 'icon-success'?: any;
|
|
157
|
+
readonly 'icon-success-inverted'?: any;
|
|
158
|
+
readonly 'icon-warning'?: any;
|
|
159
|
+
readonly 'icon-warning-prominent'?: any;
|
|
160
|
+
readonly 'border-danger'?: any;
|
|
161
|
+
readonly 'border-danger-active'?: any;
|
|
162
|
+
readonly 'border-danger-hover'?: any;
|
|
163
|
+
readonly 'border-focus-inner'?: any;
|
|
164
|
+
readonly 'border-focus-middle'?: any;
|
|
165
|
+
readonly 'border-focus-outer'?: any;
|
|
166
|
+
readonly 'border-neutrals'?: any;
|
|
167
|
+
readonly 'border-neutrals-active'?: any;
|
|
168
|
+
readonly 'border-neutrals-controls'?: any;
|
|
169
|
+
readonly 'border-neutrals-controls-disabled'?: any;
|
|
170
|
+
readonly 'border-neutrals-disabled'?: any;
|
|
171
|
+
readonly 'border-neutrals-hover'?: any;
|
|
172
|
+
readonly 'border-neutrals-inverted'?: any;
|
|
173
|
+
readonly 'border-neutrals-subtle'?: any;
|
|
174
|
+
readonly 'border-neutrals-text-subtle'?: any;
|
|
175
|
+
readonly 'border-neutrals-text-subtle-active'?: any;
|
|
176
|
+
readonly 'border-neutrals-text-subtle-hover'?: any;
|
|
177
|
+
readonly 'border-primary'?: any;
|
|
178
|
+
readonly 'border-primary-active'?: any;
|
|
179
|
+
readonly 'border-primary-hover'?: any;
|
|
180
|
+
readonly 'border-primary-inverted'?: any;
|
|
181
|
+
readonly 'border-success'?: any;
|
|
182
|
+
readonly 'border-warning'?: any;
|
|
195
183
|
};
|
|
196
184
|
'font-sizes': {
|
|
197
185
|
readonly 150: "0.75rem";
|
|
@@ -478,7 +466,7 @@ declare const StyledIcon: ForwardRefExoticComponent<Omit<Omit<{
|
|
|
478
466
|
}> & {
|
|
479
467
|
children?: react.ReactNode;
|
|
480
468
|
} & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & RefAttributes<SVGSVGElement>> & _mirohq_design_system_stitches.StitchesInternals<ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"svg">>, {
|
|
481
|
-
color?:
|
|
469
|
+
color?: "background-danger" | "background-danger-hover" | "background-danger-prominent" | "background-danger-prominent-active" | "background-danger-prominent-hover" | "background-neutrals" | "background-neutrals-container" | "background-neutrals-controls-disabled" | "background-neutrals-disabled" | "background-neutrals-inactive" | "background-neutrals-inactive-hover" | "background-neutrals-inverted" | "background-neutrals-inverted-subtle" | "background-neutrals-page" | "background-neutrals-page-subtle" | "background-neutrals-scrolls" | "background-neutrals-scrolls-hover" | "background-neutrals-subtle" | "background-neutrals-subtle-active" | "background-neutrals-subtle-hover" | "background-primary-prominent" | "background-primary-prominent-active" | "background-primary-prominent-hover" | "background-primary-prominent-selected" | "background-primary-subtle" | "background-primary-subtle-active" | "background-primary-subtle-hover" | "background-primary-subtle-selected" | "background-success" | "background-warning-prominent" | "background-warning-subtle" | "text-danger" | "text-danger-active" | "text-danger-hover" | "text-danger-inverted" | "text-neutrals" | "text-neutrals-disabled" | "text-neutrals-inverted" | "text-neutrals-placeholder" | "text-neutrals-placeholder-only" | "text-neutrals-subtle" | "text-neutrals-subtle-active" | "text-neutrals-subtle-hover" | "text-primary" | "text-primary-active" | "text-primary-hover" | "text-primary-inverted" | "text-primary-inverted-subtle" | "text-primary-selected" | "text-success" | "text-warning" | "icon-danger" | "icon-danger-active" | "icon-danger-hover" | "icon-danger-inverted" | "icon-neutrals" | "icon-neutrals-disabled" | "icon-neutrals-inactive" | "icon-neutrals-inactive-hover" | "icon-neutrals-inverted" | "icon-neutrals-search" | "icon-neutrals-subtle" | "icon-neutrals-text" | "icon-primary" | "icon-primary-active" | "icon-primary-hover" | "icon-primary-inverted" | "icon-primary-selected" | "icon-success" | "icon-success-inverted" | "icon-warning" | "icon-warning-prominent" | "border-danger" | "border-danger-active" | "border-danger-hover" | "border-focus-inner" | "border-focus-middle" | "border-focus-outer" | "border-neutrals" | "border-neutrals-active" | "border-neutrals-controls" | "border-neutrals-controls-disabled" | "border-neutrals-disabled" | "border-neutrals-hover" | "border-neutrals-inverted" | "border-neutrals-subtle" | "border-neutrals-text-subtle" | "border-neutrals-text-subtle-active" | "border-neutrals-text-subtle-hover" | "border-primary" | "border-primary-active" | "border-primary-hover" | "border-primary-inverted" | "border-success" | "border-warning" | "blue-100" | "blue-200" | "blue-300" | "blue-400" | "blue-500" | "blue-600" | "blue-700" | "blue-800" | "blue-900" | "blue-1000" | "gray-100" | "gray-200" | "gray-300" | "gray-400" | "gray-500" | "gray-600" | "gray-700" | "gray-800" | "gray-900" | "indigo-100" | "indigo-200" | "indigo-300" | "indigo-400" | "indigo-500" | "indigo-600" | "indigo-700" | "indigo-800" | "indigo-900" | "red-100" | "red-200" | "red-300" | "red-400" | "red-500" | "red-600" | "red-700" | "red-800" | "red-900" | "yellow-100" | "yellow-200" | "yellow-300" | "yellow-400" | "yellow-500" | "yellow-600" | "yellow-700" | "yellow-800" | "yellow-900" | "green-100" | "green-200" | "green-300" | "green-400" | "green-500" | "green-600" | "green-700" | "green-800" | "green-900" | "black" | "white" | "transparent" | undefined;
|
|
482
470
|
size?: "small" | "medium" | "large" | undefined;
|
|
483
471
|
weight?: "bold" | "thin" | "normal" | undefined;
|
|
484
472
|
}, {}>;
|
|
@@ -1048,6 +1036,18 @@ declare const IconRectangleDotLinePen: IconComponentType;
|
|
|
1048
1036
|
|
|
1049
1037
|
declare const IconRectanglePlayStack: IconComponentType;
|
|
1050
1038
|
|
|
1039
|
+
declare const IconRectanglePortraitDashSquareTopCenter: IconComponentType;
|
|
1040
|
+
|
|
1041
|
+
declare const IconRectanglePortraitDashSquareTopLeft: IconComponentType;
|
|
1042
|
+
|
|
1043
|
+
declare const IconRectanglePortraitDash: IconComponentType;
|
|
1044
|
+
|
|
1045
|
+
declare const IconRectanglePortraitFilled: IconComponentType;
|
|
1046
|
+
|
|
1047
|
+
declare const IconRectanglePortraitSquareTopLeft: IconComponentType;
|
|
1048
|
+
|
|
1049
|
+
declare const IconRectanglePortrait: IconComponentType;
|
|
1050
|
+
|
|
1051
1051
|
declare const IconRectangleTick: IconComponentType;
|
|
1052
1052
|
|
|
1053
1053
|
declare const IconRectangleTriangleBottomCenter: IconComponentType;
|
|
@@ -1104,6 +1104,8 @@ declare const IconSmileySticker: IconComponentType;
|
|
|
1104
1104
|
|
|
1105
1105
|
declare const IconSmiley: IconComponentType;
|
|
1106
1106
|
|
|
1107
|
+
declare const IconSocialDrawio: IconComponentType;
|
|
1108
|
+
|
|
1107
1109
|
declare const IconSocialFacebook: IconComponentType;
|
|
1108
1110
|
|
|
1109
1111
|
declare const IconSocialInstagram: IconComponentType;
|
|
@@ -1298,4 +1300,4 @@ declare const IconViewSideLeft: IconComponentType;
|
|
|
1298
1300
|
|
|
1299
1301
|
declare const IconWallet: IconComponentType;
|
|
1300
1302
|
|
|
1301
|
-
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconColumnsThree, IconComponentType, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDistributeHorizontal, IconDistributeVertical, IconDotsNine, IconDotsThree, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconOctagon, IconOffice, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusSquare, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProps, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectanglePlayStack, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialSlack, IconSocialTwitter, IconSocialYoutube, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
|
1303
|
+
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconColumnsThree, IconComponentType, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDistributeHorizontal, IconDistributeVertical, IconDotsNine, IconDotsThree, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconOctagon, IconOffice, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusSquare, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProps, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialSlack, IconSocialTwitter, IconSocialYoutube, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-icons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"react": "^16.14 || ^17 || ^18"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@mirohq/design-system-base-icon": "^0.1.
|
|
35
|
-
"@mirohq/design-system-link": "^1.2.
|
|
34
|
+
"@mirohq/design-system-base-icon": "^0.1.3",
|
|
35
|
+
"@mirohq/design-system-link": "^1.2.16",
|
|
36
36
|
"@mirohq/design-system-primitive": "^1.1.0",
|
|
37
|
-
"@mirohq/design-system-stitches": "^2.3.
|
|
37
|
+
"@mirohq/design-system-stitches": "^2.3.4",
|
|
38
38
|
"@mirohq/design-system-utils": "^0.14.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
package/react/heart-filled.tsx
CHANGED
|
@@ -21,12 +21,12 @@ export const IconHeartFilled: IconComponentType = forwardRef(
|
|
|
21
21
|
ref: forwardRef,
|
|
22
22
|
},
|
|
23
23
|
<path
|
|
24
|
-
|
|
25
|
-
strokeWidth='var(--svg-stroke-width)'
|
|
24
|
+
fill='currentColor'
|
|
26
25
|
d='m11.1585 6.5291.8415 1.3105.8415-1.3105c1.5981-2.489 3.8242-2.5291 4.7146-2.5291.4494 0 1.6982.1906 2.7446 1.0014.9742.755 1.8974 2.1398 1.6625 4.8164-.1809 2.0604-1.643 4.2847-3.6841 6.3364-2.0102 2.0206-4.4298 3.7219-6.2213 4.7399a.1155.1155 0 0 1-.0578.016.1155.1155 0 0 1-.0578-.016c-1.7915-1.018-4.2111-2.7193-6.2214-4.7399-2.041-2.0517-3.5031-4.276-3.684-6.3364-.235-2.6766.6883-4.0614 1.6625-4.8164 1.0463-.8108 2.2952-1.0014 2.7445-1.0014.8905 0 3.1166.0402 4.7147 2.5291Z'
|
|
27
26
|
/>,
|
|
28
27
|
<path
|
|
29
|
-
|
|
28
|
+
stroke='currentColor'
|
|
29
|
+
strokeWidth='var(--svg-stroke-width)'
|
|
30
30
|
d='m11.1585 6.5291.8415 1.3105.8415-1.3105c1.5981-2.489 3.8242-2.5291 4.7146-2.5291.4494 0 1.6982.1906 2.7446 1.0014.9742.755 1.8974 2.1398 1.6625 4.8164-.1809 2.0604-1.643 4.2847-3.6841 6.3364-2.0102 2.0206-4.4298 3.7219-6.2213 4.7399a.1155.1155 0 0 1-.0578.016.1155.1155 0 0 1-.0578-.016c-1.7915-1.018-4.2111-2.7193-6.2214-4.7399-2.041-2.0517-3.5031-4.276-3.684-6.3364-.235-2.6766.6883-4.0614 1.6625-4.8164 1.0463-.8108 2.2952-1.0014 2.7445-1.0014.8905 0 3.1166.0402 4.7147 2.5291Z'
|
|
31
31
|
/>
|
|
32
32
|
)
|
package/react/index.ts
CHANGED
|
@@ -271,6 +271,12 @@ export { IconRectangleArrowUpCenter } from './rectangle-arrow-up-center'
|
|
|
271
271
|
export { IconRectangleDashLines } from './rectangle-dash-lines'
|
|
272
272
|
export { IconRectangleDotLinePen } from './rectangle-dot-line-pen'
|
|
273
273
|
export { IconRectanglePlayStack } from './rectangle-play-stack'
|
|
274
|
+
export { IconRectanglePortraitDashSquareTopCenter } from './rectangle-portrait-dash-square-top-center'
|
|
275
|
+
export { IconRectanglePortraitDashSquareTopLeft } from './rectangle-portrait-dash-square-top-left'
|
|
276
|
+
export { IconRectanglePortraitDash } from './rectangle-portrait-dash'
|
|
277
|
+
export { IconRectanglePortraitFilled } from './rectangle-portrait-filled'
|
|
278
|
+
export { IconRectanglePortraitSquareTopLeft } from './rectangle-portrait-square-top-left'
|
|
279
|
+
export { IconRectanglePortrait } from './rectangle-portrait'
|
|
274
280
|
export { IconRectangleTick } from './rectangle-tick'
|
|
275
281
|
export { IconRectangleTriangleBottomCenter } from './rectangle-triangle-bottom-center'
|
|
276
282
|
export { IconRectanglesThreeAligned } from './rectangles-three-aligned'
|
|
@@ -299,6 +305,7 @@ export { IconSmileyChat } from './smiley-chat'
|
|
|
299
305
|
export { IconSmileyPlus } from './smiley-plus'
|
|
300
306
|
export { IconSmileySticker } from './smiley-sticker'
|
|
301
307
|
export { IconSmiley } from './smiley'
|
|
308
|
+
export { IconSocialDrawio } from './social-drawio'
|
|
302
309
|
export { IconSocialFacebook } from './social-facebook'
|
|
303
310
|
export { IconSocialInstagram } from './social-instagram'
|
|
304
311
|
export { IconSocialJira } from './social-jira'
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconComponentType } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconRectanglePortraitDashSquareTopCenter: IconComponentType =
|
|
12
|
+
forwardRef(({ size = 'medium', weight = 'normal', ...props }, forwardRef) =>
|
|
13
|
+
createElement(
|
|
14
|
+
StyledIcon,
|
|
15
|
+
{
|
|
16
|
+
...props,
|
|
17
|
+
weight,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path fill='currentColor' d='M9 3h6v6h-6v-6Z' />,
|
|
24
|
+
<path
|
|
25
|
+
stroke='currentColor'
|
|
26
|
+
strokeWidth='var(--svg-stroke-width)'
|
|
27
|
+
d='M3 6v-2c0-.5523.4477-1 1-1h2m12 0h2c.5523 0 1 .4477 1 1v2m0 4v4m0 4v2c0 .5523-.4477 1-1 1h-2m-4 0h-4m-4 0h-2c-.5523 0-1-.4477-1-1v-2m0-4v-4m6-7h6v6h-6v-6Z'
|
|
28
|
+
/>
|
|
29
|
+
)
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
IconRectanglePortraitDashSquareTopCenter[iconSymbol] = true
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconComponentType } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconRectanglePortraitDashSquareTopLeft: IconComponentType =
|
|
12
|
+
forwardRef(({ size = 'medium', weight = 'normal', ...props }, forwardRef) =>
|
|
13
|
+
createElement(
|
|
14
|
+
StyledIcon,
|
|
15
|
+
{
|
|
16
|
+
...props,
|
|
17
|
+
weight,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path fill='currentColor' d='M3 3h6v6h-6v-6Z' />,
|
|
24
|
+
<path
|
|
25
|
+
stroke='currentColor'
|
|
26
|
+
strokeWidth='var(--svg-stroke-width)'
|
|
27
|
+
d='M13 3h3m2 0h2c.5523 0 1 .4477 1 1v2m0 2v3m0 2v3m0 2v2c0 .5523-.4477 1-1 1h-2m-15-3v2c0 .5523.4477 1 1 1h2m10 0h-3m-5 0h3m-8-5v-3m0-4h6v-6h-5c-.5523 0-1 .4477-1 1v5Z'
|
|
28
|
+
/>
|
|
29
|
+
)
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
IconRectanglePortraitDashSquareTopLeft[iconSymbol] = true
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconComponentType } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconRectanglePortraitDash: IconComponentType = forwardRef(
|
|
12
|
+
({ size = 'medium', weight = 'normal', ...props }, forwardRef) =>
|
|
13
|
+
createElement(
|
|
14
|
+
StyledIcon,
|
|
15
|
+
{
|
|
16
|
+
...props,
|
|
17
|
+
weight,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path
|
|
24
|
+
stroke='currentColor'
|
|
25
|
+
strokeLinejoin='round'
|
|
26
|
+
strokeWidth='var(--svg-stroke-width)'
|
|
27
|
+
d='M3 6v-2c0-.5523.4477-1 1-1h2m4 0h4m4 0h2c.5523 0 1 .4477 1 1v2m0 4v4m0 4v2c0 .5523-.4477 1-1 1h-2m-4 0h-4m-4 0h-2c-.5523 0-1-.4477-1-1v-2m0-4v-4'
|
|
28
|
+
/>
|
|
29
|
+
)
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
IconRectanglePortraitDash[iconSymbol] = true
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconComponentType } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconRectanglePortraitFilled: IconComponentType = forwardRef(
|
|
12
|
+
({ size = 'medium', weight = 'normal', ...props }, forwardRef) =>
|
|
13
|
+
createElement(
|
|
14
|
+
StyledIcon,
|
|
15
|
+
{
|
|
16
|
+
...props,
|
|
17
|
+
weight,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path fill='currentColor' d='M3 3h18v18h-18v-18Z' />,
|
|
24
|
+
<path
|
|
25
|
+
stroke='currentColor'
|
|
26
|
+
strokeLinejoin='round'
|
|
27
|
+
strokeWidth='var(--svg-stroke-width)'
|
|
28
|
+
d='M3 4c0-.5523.4477-1 1-1h16c.5523 0 1 .4477 1 1v16c0 .5523-.4477 1-1 1h-16c-.5523 0-1-.4477-1-1v-16Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
IconRectanglePortraitFilled[iconSymbol] = true
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconComponentType } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconRectanglePortraitSquareTopLeft: IconComponentType = forwardRef(
|
|
12
|
+
({ size = 'medium', weight = 'normal', ...props }, forwardRef) =>
|
|
13
|
+
createElement(
|
|
14
|
+
StyledIcon,
|
|
15
|
+
{
|
|
16
|
+
...props,
|
|
17
|
+
weight,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path fill='currentColor' d='M3 3h6v6h-6v-6Z' />,
|
|
24
|
+
<path
|
|
25
|
+
stroke='currentColor'
|
|
26
|
+
strokeWidth='var(--svg-stroke-width)'
|
|
27
|
+
d='M3 9v-5c0-.5523.4477-1 1-1h5m-6 6v11c0 .5523.4477 1 1 1h16c.5523 0 1-.4477 1-1v-16c0-.5523-.4477-1-1-1h-11m-6 6h6v-6'
|
|
28
|
+
/>
|
|
29
|
+
)
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
IconRectanglePortraitSquareTopLeft[iconSymbol] = true
|