groundfloor-react-ui 1.2.3 → 1.2.4
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/components/Avatar/AvatarSBfooter.js +1 -3
- package/components/Button/PrimaryButton.js +1 -1
- package/components/Cards/DocumentCard.js +126 -126
- package/components/Cards/index.js +1 -1
- package/components/Content/Content.js +1 -2
- package/components/Content/index.js +1 -1
- package/components/DesignComponent/StyledComponent/StyledComponent.js +1 -0
- package/components/DesignComponent/StyledComponent/index.js +1 -1
- package/components/DesignComponent/index.js +1 -1
- package/components/ErrorBoundary/ErrorBoundary.js +1 -1
- package/components/Footer/Footer.js +1 -2
- package/components/Footer/FooterContent.js +1 -3
- package/components/Footer/index.js +2 -1
- package/components/Form/SubmitComponent.js +1 -1
- package/components/Form/index.js +1 -0
- package/components/GroupButtons/ButtonPopup.js +2 -2
- package/components/GroupButtons/GroupButtons.js +1 -1
- package/components/GroupButtons/index.js +1 -1
- package/components/GroupStatusCircle/GroupStatusCircle.js +1 -1
- package/components/Header/Header.js +2 -2
- package/components/HyperLink/HyperLink.js +2 -2
- package/components/Icon/Icon.js +46 -46
- package/components/Inputs/ColorInput.js +47 -46
- package/components/Inputs/DropzoneInput.js +1 -1
- package/components/Inputs/NumericInput.js +5 -5
- package/components/Inputs/PasswordInput.js +5 -5
- package/components/Inputs/RadioInput.js +12 -12
- package/components/Inputs/Signature.js +1 -1
- package/components/Inputs/TextInput.js +4 -4
- package/components/Inputs/TimeInput.js +1 -1
- package/components/Label/Label.js +8 -8
- package/components/Loaders/Loader.js +3 -3
- package/components/Overlay/Overlay.js +2 -2
- package/components/Pagination/Pagination.js +17 -17
- package/components/ProgressSteps/ProgressSteps.js +1 -1
- package/components/SecondaryLink/DarkSecondaryLink.js +1 -1
- package/components/SecondaryLink/LightSecondaryLink.js +1 -1
- package/components/SecondaryLink/index.js +1 -1
- package/components/Sidebar/Sidebar.js +1 -1
- package/components/Sidebar/index.js +1 -1
- package/components/StatusChip/PrimaryStatusChip.js +1 -1
- package/components/StatusChip/SecondaryStatusChip.js +1 -1
- package/components/StatusChip/SlimPrimaryStatusChip.js +1 -1
- package/components/StatusChip/SlimSecondaryStatusChip.js +1 -1
- package/components/StatusCircle/StatusCircle.js +1 -1
- package/components/Tooltip/Tooltip.js +279 -279
- package/components/constants/defaultStyle.js +20 -20
- package/components/constants/defaultThemeColor.js +1 -1
- package/components/global/FontStyle.js +10 -10
- package/dist/index.es.js +219 -219
- package/dist/index.js +151 -151
- package/package.json +1 -1
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import PropTypes from 'prop-types';
|
|
2
|
-
|
|
3
2
|
import React, { useState } from "react";
|
|
4
|
-
|
|
5
3
|
import styled, { css, useTheme } from 'styled-components';
|
|
6
4
|
import defaultStyles from '../constants/defaultStyle';
|
|
7
5
|
import defaultThemeColor from '../constants/defaultThemeColor';
|
|
@@ -264,7 +262,7 @@ AvatarSBfooter.defaultProps = {
|
|
|
264
262
|
/**
|
|
265
263
|
* inBuiltCss object
|
|
266
264
|
*/
|
|
267
|
-
|
|
265
|
+
inBuiltCss: PropTypes.object,
|
|
268
266
|
};
|
|
269
267
|
|
|
270
268
|
AvatarSBfooter.defaultProps = {
|
|
@@ -8,44 +8,44 @@ import defaultThemeColor from '../constants/defaultThemeColor';
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
const sizes = {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
11
|
+
sm: {
|
|
12
|
+
cardWidth: '178px',
|
|
13
|
+
cardMinHeight: '88px',
|
|
14
|
+
borderRadius: '4px',
|
|
15
|
+
border: '0.7px',
|
|
16
|
+
bodyHeight: '55px',
|
|
17
|
+
footerFontSize: '10px',
|
|
18
|
+
footerMinHeight: '31px',
|
|
19
|
+
footerPadding: '10.5px 16px',
|
|
20
|
+
footerLineHeight: '16px',
|
|
21
|
+
lineHeight: '12px',
|
|
22
|
+
},
|
|
23
|
+
md: {
|
|
24
|
+
cardWidth: '215px',
|
|
25
|
+
cardMinHeight: '123px',
|
|
26
|
+
borderRadius: '6px',
|
|
27
|
+
border: '1px',
|
|
28
|
+
bodyHeight: '67px',
|
|
29
|
+
footerFontSize: '14px',
|
|
30
|
+
footerMinHeight: '54px',
|
|
31
|
+
footerPadding: '18px 19px',
|
|
32
|
+
footerLineHeight: '12px',
|
|
33
|
+
lineHeight: '16px',
|
|
34
|
+
},
|
|
35
35
|
};
|
|
36
36
|
|
|
37
37
|
const StyledDocumentCard = styled.div`
|
|
38
38
|
${({ trimFileName }) => {
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
if (trimFileName) {
|
|
40
|
+
return css`
|
|
41
41
|
height: ${({ size }) => sizes[size].cardMinHeight};
|
|
42
42
|
`;
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
} else {
|
|
44
|
+
return css`
|
|
45
45
|
min-height: ${({ size }) => sizes[size].cardMinHeight};
|
|
46
46
|
`;
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
}
|
|
48
|
+
}}
|
|
49
49
|
width: ${({ size }) => sizes[size].cardWidth};
|
|
50
50
|
border-radius: ${({ size }) => sizes[size].borderRadius};
|
|
51
51
|
border: ${({ size }) => sizes[size].border} solid
|
|
@@ -66,7 +66,7 @@ const StyledDocumentCard = styled.div`
|
|
|
66
66
|
const StyledCardBody = styled.div`
|
|
67
67
|
display: flex;
|
|
68
68
|
justify-content: ${({ buttons }) =>
|
|
69
|
-
|
|
69
|
+
buttons !== '11' ? 'center' : 'space-between'};
|
|
70
70
|
align-items: center;
|
|
71
71
|
height: ${({ size }) => sizes[size].bodyHeight};
|
|
72
72
|
margin: 0;
|
|
@@ -75,7 +75,7 @@ const StyledCardBody = styled.div`
|
|
|
75
75
|
border-top-left-radius: ${({ size }) => sizes[size].borderRadius};
|
|
76
76
|
border-top-right-radius: ${({ size }) => sizes[size].borderRadius};
|
|
77
77
|
background-color: ${({ theme, variantBgBody }) =>
|
|
78
|
-
|
|
78
|
+
theme.variant[variantBgBody]};
|
|
79
79
|
background: linear-gradient(
|
|
80
80
|
0deg,
|
|
81
81
|
rgba(226, 230, 245, 0.5),
|
|
@@ -88,128 +88,128 @@ const StyledCardBody = styled.div`
|
|
|
88
88
|
|
|
89
89
|
const StyledCardFooter = styled.div`
|
|
90
90
|
${({ trimFileName }) => {
|
|
91
|
-
|
|
92
|
-
|
|
91
|
+
if (trimFileName) {
|
|
92
|
+
return css`
|
|
93
93
|
white-space: nowrap;
|
|
94
94
|
overflow: hidden;
|
|
95
95
|
text-overflow: ellipsis;
|
|
96
96
|
height: ${({ size }) => sizes[size].footerMinHeight};
|
|
97
97
|
`;
|
|
98
|
-
|
|
99
|
-
|
|
98
|
+
} else {
|
|
99
|
+
return css`
|
|
100
100
|
display: flex;
|
|
101
101
|
align-items: center;
|
|
102
102
|
min-height: ${({ size }) => sizes[size].footerMinHeight};
|
|
103
103
|
overflow-wrap: anywhere;
|
|
104
104
|
hyphens: auto;
|
|
105
105
|
`;
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
}
|
|
107
|
+
}}
|
|
108
108
|
font-size: ${({ size }) => sizes[size].footerFontSize};
|
|
109
109
|
padding: ${({ size }) => sizes[size].footerPadding};
|
|
110
110
|
color: ${({ theme, variant }) => theme.variant[variant]};
|
|
111
111
|
background-color: ${({ theme, variantBgFooter }) =>
|
|
112
|
-
|
|
112
|
+
variantBgFooter ? theme.variant[variantBgFooter] : theme['bgColor']};
|
|
113
113
|
box-sizing: border-box;
|
|
114
114
|
line-height: ${({ size }) => sizes[size].lineHeight};
|
|
115
115
|
border-bottom-left-radius: inherit;
|
|
116
116
|
border-bottom-right-radius: inherit;
|
|
117
117
|
`;
|
|
118
118
|
export const DocumentCard = ({
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
119
|
+
variant,
|
|
120
|
+
variantBorder,
|
|
121
|
+
variantBorderHover,
|
|
122
|
+
variantBgBody,
|
|
123
|
+
variantBgFooter,
|
|
124
|
+
fileName,
|
|
125
|
+
bgUrl,
|
|
126
|
+
size,
|
|
127
|
+
trimFileName,
|
|
128
|
+
bodyContent,
|
|
129
|
+
...props
|
|
130
130
|
}) => {
|
|
131
|
-
|
|
131
|
+
const activeTheme = useTheme() || defaultThemeColor;
|
|
132
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
|
-
|
|
133
|
+
return (
|
|
134
|
+
<StyledDocumentCard
|
|
135
|
+
variantBorder={variantBorder}
|
|
136
|
+
variantBorderHover={variantBorderHover}
|
|
137
|
+
variantBgBody={variantBgBody}
|
|
138
|
+
size={size}
|
|
139
|
+
trimFileName={trimFileName}
|
|
140
|
+
theme={activeTheme}
|
|
141
|
+
{...props}
|
|
142
|
+
>
|
|
143
|
+
<StyledCardBody bgUrl={bgUrl} size={size} theme={activeTheme}>
|
|
144
|
+
{bodyContent}
|
|
145
|
+
</StyledCardBody>
|
|
146
|
+
<StyledCardFooter
|
|
147
|
+
theme={activeTheme}
|
|
148
|
+
title={fileName}
|
|
149
|
+
variant={variant}
|
|
150
|
+
variantBgFooter={variantBgFooter}
|
|
151
|
+
trimFileName={trimFileName}
|
|
152
|
+
size={size}
|
|
153
|
+
>
|
|
154
|
+
{fileName}
|
|
155
|
+
</StyledCardFooter>
|
|
156
|
+
</StyledDocumentCard>
|
|
157
|
+
);
|
|
158
158
|
};
|
|
159
159
|
|
|
160
160
|
DocumentCard.propTypes = {
|
|
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
|
-
|
|
195
|
-
|
|
196
|
-
|
|
161
|
+
/**
|
|
162
|
+
* Color of Footer text. primary-1, 2, error, etc.
|
|
163
|
+
*/
|
|
164
|
+
variant: PropTypes.string,
|
|
165
|
+
/**
|
|
166
|
+
* Color of DocumentCard border. primary-1, 2, error, etc.
|
|
167
|
+
*/
|
|
168
|
+
variantBorder: PropTypes.string,
|
|
169
|
+
/**
|
|
170
|
+
* Color of DocumentCard border on hover. primary-1, 2, error, etc.
|
|
171
|
+
*/
|
|
172
|
+
variantBorderHover: PropTypes.string,
|
|
173
|
+
/**
|
|
174
|
+
* Color of Body background. primary-1, 2, error, etc.
|
|
175
|
+
*/
|
|
176
|
+
variantBgBody: PropTypes.string,
|
|
177
|
+
/**
|
|
178
|
+
* Color of Footer background. primary-1, 2, error, etc.
|
|
179
|
+
*/
|
|
180
|
+
variantBgFooter: PropTypes.string,
|
|
181
|
+
/**
|
|
182
|
+
* String to display in the footer
|
|
183
|
+
*/
|
|
184
|
+
fileName: PropTypes.string,
|
|
185
|
+
/**
|
|
186
|
+
* Url of the picture to display as card body background
|
|
187
|
+
*/
|
|
188
|
+
bgUrl: PropTypes.string,
|
|
189
|
+
/**
|
|
190
|
+
* Size of the card small or medium
|
|
191
|
+
*/
|
|
192
|
+
size: PropTypes.oneOf(['sm', 'md']),
|
|
193
|
+
/**
|
|
194
|
+
* If true if the fimeName is longer than the width is trimmed. If false the fileName is wrapped and the footer expands vertically
|
|
195
|
+
*/
|
|
196
|
+
trimFileName: PropTypes.bool,
|
|
197
197
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
198
|
+
/**
|
|
199
|
+
* Children component of the Card Body
|
|
200
|
+
*/
|
|
201
|
+
bodyContent: PropTypes.element,
|
|
202
202
|
};
|
|
203
203
|
|
|
204
204
|
DocumentCard.defaultProps = {
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
205
|
+
variant: 'black',
|
|
206
|
+
variantBorder: 'neutral-5',
|
|
207
|
+
variantBorderHover: 'primary-1',
|
|
208
|
+
variantBgBody: 'neutral-4',
|
|
209
|
+
variantBgFooter: null,
|
|
210
|
+
fileName: '',
|
|
211
|
+
bgUrl: null,
|
|
212
|
+
size: 'md',
|
|
213
|
+
trimFileName: true,
|
|
214
|
+
bodyContent: null,
|
|
215
215
|
};
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import PropTypes from 'prop-types';
|
|
2
|
+
import React from 'react';
|
|
3
3
|
import styled from 'styled-components';
|
|
4
4
|
import defaultStyles from '../constants/defaultStyle';
|
|
5
5
|
import getDefaultStyles from '../constants/utils';
|
|
6
|
-
// import './../../../App.css'
|
|
7
6
|
|
|
8
7
|
const ContentLayout = styled.div`
|
|
9
8
|
//Set the styles from the default styles object
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './Content';
|
|
1
|
+
export * from './Content';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './StyledComponent';
|
|
1
|
+
export * from './StyledComponent';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './StyledComponent';
|
|
1
|
+
export * from './StyledComponent';
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import React, { forwardRef } from 'react';
|
|
2
1
|
import PropTypes from 'prop-types';
|
|
2
|
+
import React, { forwardRef } from 'react';
|
|
3
3
|
import styled from 'styled-components';
|
|
4
4
|
import defaultStyles from '../constants/defaultStyle';
|
|
5
5
|
import getDefaultStyles from '../constants/utils';
|
|
6
|
-
// import { FooterContext } from '../../../routes/Level2';
|
|
7
6
|
|
|
8
7
|
/**
|
|
9
8
|
* Primary UI component for user interaction
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import styled, { css } from 'styled-components';
|
|
3
|
-
import defaultThemeColor from '../constants/defaultThemeColor';
|
|
4
|
-
// import { FooterContext } from '../../../routes/Level2'
|
|
5
3
|
|
|
6
4
|
const StyledOutsideContainer = styled.div`
|
|
7
5
|
font-size: 14px;
|
package/components/Form/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import PropTypes from 'prop-types';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { usePopperTooltip } from 'react-popper-tooltip';
|
|
3
4
|
import styled, { useTheme } from 'styled-components';
|
|
4
5
|
import defaultThemeColor from '../constants/defaultThemeColor';
|
|
5
|
-
import { usePopperTooltip } from 'react-popper-tooltip';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Primary UI component for user interaction
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import PropTypes from 'prop-types';
|
|
2
|
+
import React from 'react';
|
|
3
3
|
import styled from 'styled-components';
|
|
4
4
|
import defaultStyles from '../constants/defaultStyle';
|
|
5
5
|
import getDefaultStyles from '../constants/utils';
|
|
@@ -11,7 +11,7 @@ import getDefaultStyles from '../constants/utils';
|
|
|
11
11
|
const StyledHeader = styled.header`
|
|
12
12
|
//Set the styles from the default styles object
|
|
13
13
|
${({ theme, type }) => {
|
|
14
|
-
|
|
14
|
+
return getDefaultStyles(theme, type);
|
|
15
15
|
}}
|
|
16
16
|
// custom styles
|
|
17
17
|
${({ customStyles }) => customStyles}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import PropTypes from 'prop-types';
|
|
3
|
-
import
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import styled, { css, useTheme } from 'styled-components';
|
|
4
4
|
import defaultThemeColor from '../constants/defaultThemeColor';
|
|
5
5
|
|
|
6
6
|
/**
|
package/components/Icon/Icon.js
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import PropTypes from 'prop-types';
|
|
2
|
+
import React from 'react';
|
|
3
3
|
import { ReactSVG } from "react-svg";
|
|
4
4
|
import styled, { css } from 'styled-components';
|
|
5
5
|
import defaultThemeColor from '../constants/defaultThemeColor';
|
|
6
6
|
|
|
7
7
|
/** import icons from assets here */
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import
|
|
31
|
-
import
|
|
32
|
-
import
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import
|
|
36
|
-
import
|
|
37
|
-
import
|
|
38
|
-
import
|
|
39
|
-
import
|
|
40
|
-
import
|
|
41
|
-
import
|
|
42
|
-
import
|
|
43
|
-
import
|
|
44
|
-
import
|
|
45
|
-
import
|
|
46
|
-
import
|
|
47
|
-
import
|
|
48
|
-
import
|
|
49
|
-
import
|
|
50
|
-
import
|
|
51
|
-
import
|
|
52
|
-
import
|
|
8
|
+
import appLogo from '../../assets/icons/app-logo.svg';
|
|
9
|
+
import arrowDown from '../../assets/icons/arrow-down.svg';
|
|
10
|
+
import arrowRotate from '../../assets/icons/arrow-rotate.svg';
|
|
11
|
+
import arrowUp from '../../assets/icons/arrow-up.svg';
|
|
12
|
+
import bell from '../../assets/icons/bell.svg';
|
|
13
|
+
import checkIcon from '../../assets/icons/check.svg';
|
|
14
|
+
import checkMark from '../../assets/icons/checkmark.svg';
|
|
15
|
+
import chevronDown from '../../assets/icons/chevron-down.svg';
|
|
16
|
+
import chevronLeft from '../../assets/icons/chevron-left.svg';
|
|
17
|
+
import chevronRight from '../../assets/icons/chevron-right.svg';
|
|
18
|
+
import cloudIcon from '../../assets/icons/cloud-icon.svg';
|
|
19
|
+
import connection from '../../assets/icons/connection.svg';
|
|
20
|
+
import crossIcon from '../../assets/icons/cross-icon.svg';
|
|
21
|
+
import defaultIcon from '../../assets/icons/default.svg';
|
|
22
|
+
import doorInternalActive from '../../assets/icons/door-internal-active.svg';
|
|
23
|
+
import editIcon from '../../assets/icons/edit-icon.svg';
|
|
24
|
+
import ellipsesHorizontal from '../../assets/icons/ellipses-horizontal.svg';
|
|
25
|
+
import ellipses from '../../assets/icons/ellipses.svg';
|
|
26
|
+
import email from '../../assets/icons/email.svg';
|
|
27
|
+
import eyeView from '../../assets/icons/eye-hide-view.svg';
|
|
28
|
+
import eyeHide from '../../assets/icons/eye-hide.svg';
|
|
29
|
+
import fileAttachWhite from '../../assets/icons/file-attach-white.svg';
|
|
30
|
+
import fileAttach from '../../assets/icons/file-attach.svg';
|
|
31
|
+
import fileIcon from '../../assets/icons/file-icon.svg';
|
|
32
|
+
import fileUpload from '../../assets/icons/file-upload.svg';
|
|
33
|
+
import equation from '../../assets/icons/functional-equation-regular.svg';
|
|
34
|
+
import hamburgerMenu from '../../assets/icons/hamburger-menu.svg';
|
|
35
|
+
import info from '../../assets/icons/info.svg';
|
|
36
|
+
import jpgIcon from '../../assets/icons/jpg-icon.svg';
|
|
37
|
+
import magnifier from '../../assets/icons/magnifier.svg';
|
|
38
|
+
import menuEllipseTwo from '../../assets/icons/menu-ellipse-two.svg';
|
|
39
|
+
import menuEllipse from '../../assets/icons/menu-ellipse.svg';
|
|
40
|
+
import pauseAll from '../../assets/icons/pause-all.svg';
|
|
41
|
+
import pdfIcon from '../../assets/icons/pdf-icon.svg';
|
|
42
|
+
import penIcon from '../../assets/icons/pen-icon.svg';
|
|
43
|
+
import plusOutline from '../../assets/icons/plus-outlined.svg';
|
|
44
|
+
import resume from '../../assets/icons/resume.svg';
|
|
45
|
+
import signIcon from '../../assets/icons/sign-icon.svg';
|
|
46
|
+
import star from '../../assets/icons/star.svg';
|
|
47
|
+
import trashIcon from '../../assets/icons/trash-icon.svg';
|
|
48
|
+
import triangleDown from '../../assets/icons/triangle-down.svg';
|
|
49
|
+
import user from '../../assets/icons/users.svg';
|
|
50
|
+
import view from '../../assets/icons/view.svg';
|
|
51
|
+
import watcher from '../../assets/icons/watcher.svg';
|
|
52
|
+
import zoomInWhite from '../../assets/icons/zoom-in-white.svg';
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
/** icon name should be kebab-case, e.g "plus-outline" */
|