@frollo/frollo-web-ui 0.0.17 → 0.0.20
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/icons/envelope.svg +5 -0
- package/icons/index.ts +3 -1
- package/package.json +1 -1
- package/tailwind.config.js +3 -1
- package/types/icons/index.d.ts +2 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 56 56" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M49 7H7C3.13359 7 0 10.1336 0 14V42C0 45.8664 3.13359 49 7 49H49C52.8664 49 56 45.8664 56 42V14C56 10.1336 52.8609 7 49 7ZM7 10.5H49C50.9294 10.5 52.5 12.0706 52.5 14V17.9386L31.15 33.9511C29.2906 35.3423 26.7061 35.3423 24.8467 33.9511L3.5 17.9375V14C3.5 12.075 5.07063 10.5 7 10.5ZM52.5 42C52.5 43.9294 50.9294 45.5 49 45.5H7C5.07063 45.5 3.5 43.9294 3.5 42V22.2141L22.75 36.75C24.2944 37.9105 26.1472 38.5022 28 38.5022C29.8528 38.5022 31.7078 37.9094 33.25 36.75L52.5 22.2141V42Z"
|
|
4
|
+
/>
|
|
5
|
+
</svg>
|
package/icons/index.ts
CHANGED
|
@@ -12,6 +12,7 @@ import IdCardSvg from './id-card.svg';
|
|
|
12
12
|
import InfoCircleSvg from './info-circle.svg';
|
|
13
13
|
import FileExclamationSvg from './file-exclamation.svg';
|
|
14
14
|
import HourglassClockSvg from './hourglass-clock.svg';
|
|
15
|
+
import EnvelopeSvg from './envelope.svg';
|
|
15
16
|
|
|
16
17
|
export {
|
|
17
18
|
ViewSvg,
|
|
@@ -27,5 +28,6 @@ export {
|
|
|
27
28
|
IdCardSvg,
|
|
28
29
|
InfoCircleSvg,
|
|
29
30
|
FileExclamationSvg,
|
|
30
|
-
HourglassClockSvg
|
|
31
|
+
HourglassClockSvg,
|
|
32
|
+
EnvelopeSvg
|
|
31
33
|
};
|
package/package.json
CHANGED
package/tailwind.config.js
CHANGED
package/types/icons/index.d.ts
CHANGED
|
@@ -12,4 +12,5 @@ import IdCardSvg from './id-card.svg';
|
|
|
12
12
|
import InfoCircleSvg from './info-circle.svg';
|
|
13
13
|
import FileExclamationSvg from './file-exclamation.svg';
|
|
14
14
|
import HourglassClockSvg from './hourglass-clock.svg';
|
|
15
|
-
|
|
15
|
+
import EnvelopeSvg from './envelope.svg';
|
|
16
|
+
export { ViewSvg, GenerateSvg, ManageSvg, NotFoundSvg, EmailFilledSvg, AlertSvg, LockSvg, EyeSvg, EyeCrossedSvg, DownloadSvg, IdCardSvg, InfoCircleSvg, FileExclamationSvg, HourglassClockSvg, EnvelopeSvg };
|