@domun/component-library 1.0.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.
Files changed (148) hide show
  1. package/lib/assets/fonts/icomoon.eot +0 -0
  2. package/lib/assets/fonts/icomoon.svg +221 -0
  3. package/lib/assets/fonts/icomoon.ttf +0 -0
  4. package/lib/assets/fonts/icomoon.woff +0 -0
  5. package/lib/assets/img/icons/AndroidIcon.d.ts +3 -0
  6. package/lib/assets/img/icons/AppleIcon.d.ts +3 -0
  7. package/lib/assets/img/icons/Close.d.ts +3 -0
  8. package/lib/assets/img/icons/index.d.ts +2 -0
  9. package/lib/common/consts/events.d.ts +16 -0
  10. package/lib/common/index.d.ts +3 -0
  11. package/lib/common/localStorage.d.ts +1 -0
  12. package/lib/common/utils.d.ts +3 -0
  13. package/lib/components/DownloadAppButton/DownloadAppButton.d.ts +3 -0
  14. package/lib/components/DownloadAppButton/DownloadAppButton.stories.d.ts +9 -0
  15. package/lib/components/DropDown/DropDown.d.ts +4 -0
  16. package/lib/components/DropDown/index.d.ts +1 -0
  17. package/lib/components/DropDown/types.d.ts +15 -0
  18. package/lib/components/ErrorMessage/ErrorMessage.d.ts +6 -0
  19. package/lib/components/ErrorMessage/index.d.ts +1 -0
  20. package/lib/components/HelpLink/HelpLink.d.ts +5 -0
  21. package/lib/components/Inputs/Input.d.ts +4 -0
  22. package/lib/components/Inputs/InputCountry.d.ts +4 -0
  23. package/lib/components/Inputs/InputDocument.d.ts +7 -0
  24. package/lib/components/Inputs/InputEconomicSector.d.ts +4 -0
  25. package/lib/components/Inputs/InputEmail.d.ts +4 -0
  26. package/lib/components/Inputs/InputPassword.d.ts +4 -0
  27. package/lib/components/Inputs/InputPhone.d.ts +4 -0
  28. package/lib/components/Inputs/index.d.ts +7 -0
  29. package/lib/components/Inputs/types.d.ts +38 -0
  30. package/lib/components/Login/Login.d.ts +4 -0
  31. package/lib/components/Login/Login.stories.d.ts +9 -0
  32. package/lib/components/Login/components/CustomerProfile/CustomerProfile.d.ts +8 -0
  33. package/lib/components/Login/components/CustomerProfile/CustomerProfile.stories.d.ts +27 -0
  34. package/lib/components/Login/components/GetCode/GetCode.d.ts +11 -0
  35. package/lib/components/Login/components/GetCode/GetCode.stories.d.ts +24 -0
  36. package/lib/components/Login/components/GetCode/types.d.ts +9 -0
  37. package/lib/components/Login/components/GetCodeByEmail/GetCodeByEmail.d.ts +9 -0
  38. package/lib/components/Login/components/GetCodeByEmail/GetCodeByEmail.stories.d.ts +20 -0
  39. package/lib/components/Login/components/GetCodeByEmail/types.d.ts +9 -0
  40. package/lib/components/Login/components/LoginContainer/LoginContainer.d.ts +6 -0
  41. package/lib/components/Login/components/RegisterInApp/RegisterInApp.d.ts +3 -0
  42. package/lib/components/Login/components/RegisterInApp/RegisterInApp.stories.d.ts +19 -0
  43. package/lib/components/Login/components/RegisterMessage/RegisterMessage.d.ts +3 -0
  44. package/lib/components/Login/components/SmsValidation/SmsValidation.d.ts +10 -0
  45. package/lib/components/Login/components/SmsValidation/SmsValidation.stories.d.ts +21 -0
  46. package/lib/components/Login/components/UpdateUserData/UpdateUserData.d.ts +9 -0
  47. package/lib/components/Login/components/UpdateUserData/UpdateUserData.stories.d.ts +19 -0
  48. package/lib/components/Login/components/ValidateCode/ValidateCode.d.ts +12 -0
  49. package/lib/components/Login/fetcher.d.ts +1 -0
  50. package/lib/components/Login/icons/CheckCircle.d.ts +3 -0
  51. package/lib/components/Login/icons/Profile.d.ts +3 -0
  52. package/lib/components/Login/icons/SignOut.d.ts +3 -0
  53. package/lib/components/Login/index.d.ts +16 -0
  54. package/lib/components/Login/services.d.ts +42 -0
  55. package/lib/components/Login/types.d.ts +41 -0
  56. package/lib/components/Modal/Modal.d.ts +3 -0
  57. package/lib/components/Modal/Modal.stories.d.ts +13 -0
  58. package/lib/components/Modal/index.d.ts +1 -0
  59. package/lib/components/Modal/types.d.ts +36 -0
  60. package/lib/components/Pagination/Pagination.stories.d.ts +16 -0
  61. package/lib/components/Pagination/index.d.ts +1 -0
  62. package/lib/components/Pagination/pagination.d.ts +4 -0
  63. package/lib/components/Pagination/paginationProps.d.ts +10 -0
  64. package/lib/components/Pagination/usePagination.d.ts +2 -0
  65. package/lib/components/ProgressBar/ProgressBar.d.ts +5 -0
  66. package/lib/components/SelectLoginMethod/SelectLoginMethod.d.ts +11 -0
  67. package/lib/components/SelectLoginMethod/index.d.ts +1 -0
  68. package/lib/components/Slider/Slider.d.ts +4 -0
  69. package/lib/components/Slider/Slider.stories.d.ts +16 -0
  70. package/lib/components/Slider/Slider.type.d.ts +16 -0
  71. package/lib/components/Slider/index.d.ts +1 -0
  72. package/lib/components/index.d.ts +10 -0
  73. package/lib/constants/constants.d.ts +30 -0
  74. package/lib/constants/index.d.ts +1 -0
  75. package/lib/icons/ArrowDown.d.ts +3 -0
  76. package/lib/icons/ArrowTop.d.ts +3 -0
  77. package/lib/icons/Chat.d.ts +3 -0
  78. package/lib/icons/Information.d.ts +3 -0
  79. package/lib/icons/LightSupport.d.ts +3 -0
  80. package/lib/icons/Password.d.ts +3 -0
  81. package/lib/icons/Rocket.d.ts +3 -0
  82. package/lib/icons/WhatsAppFill.d.ts +3 -0
  83. package/lib/icons/index.d.ts +6 -0
  84. package/lib/index.css +24 -0
  85. package/lib/index.d.ts +7 -0
  86. package/lib/index.esm.css +24 -0
  87. package/lib/index.esm.js +1 -0
  88. package/lib/index.js +1 -0
  89. package/lib/providers/auth.provider.d.ts +13 -0
  90. package/lib/providers/copies.provider.d.ts +7 -0
  91. package/lib/providers/fallback.copies.d.ts +1 -0
  92. package/lib/providers/index.d.ts +1 -0
  93. package/lib/styles/icomoon-font.dev.css +12 -0
  94. package/lib/styles/icomoon-font.prod.css +12 -0
  95. package/lib/styles/icons.css +636 -0
  96. package/lib/ui/index.d.ts +13 -0
  97. package/lib/ui/ui-autocomplete/index.d.ts +2 -0
  98. package/lib/ui/ui-autocomplete/types.d.ts +11 -0
  99. package/lib/ui/ui-autocomplete/ui-autocomplete.d.ts +5 -0
  100. package/lib/ui/ui-autocomplete/ui-autocomplete.stories.d.ts +5 -0
  101. package/lib/ui/ui-button/index.d.ts +2 -0
  102. package/lib/ui/ui-button/types.d.ts +24 -0
  103. package/lib/ui/ui-button/ui-button.d.ts +4 -0
  104. package/lib/ui/ui-checkbox/index.d.ts +2 -0
  105. package/lib/ui/ui-checkbox/types.d.ts +6 -0
  106. package/lib/ui/ui-checkbox/ui-checkbox.d.ts +4 -0
  107. package/lib/ui/ui-checkbox/ui-checkbox.stories.d.ts +5 -0
  108. package/lib/ui/ui-dropdown/index.d.ts +2 -0
  109. package/lib/ui/ui-dropdown/types.d.ts +20 -0
  110. package/lib/ui/ui-dropdown/ui-dropdown.d.ts +4 -0
  111. package/lib/ui/ui-dropdown/ui-dropdown.stories.d.ts +5 -0
  112. package/lib/ui/ui-full-screen-loader/index.d.ts +2 -0
  113. package/lib/ui/ui-full-screen-loader/types.d.ts +3 -0
  114. package/lib/ui/ui-full-screen-loader/ui-full-screen-loader.d.ts +4 -0
  115. package/lib/ui/ui-full-screen-loader/ui-full-screen-loader.stories.d.ts +5 -0
  116. package/lib/ui/ui-icons/index.d.ts +2 -0
  117. package/lib/ui/ui-icons/ui-icons-dev.d.ts +4 -0
  118. package/lib/ui/ui-icons/ui-icons-prod.d.ts +4 -0
  119. package/lib/ui/ui-input/index.d.ts +2 -0
  120. package/lib/ui/ui-input/types.d.ts +25 -0
  121. package/lib/ui/ui-input/ui-input.d.ts +4 -0
  122. package/lib/ui/ui-landing-footer/index.d.ts +2 -0
  123. package/lib/ui/ui-landing-footer/types.d.ts +3 -0
  124. package/lib/ui/ui-landing-footer/ui-landing-footer.d.ts +4 -0
  125. package/lib/ui/ui-landing-footer/ui-landing-footer.stories.d.ts +5 -0
  126. package/lib/ui/ui-landing-header/index.d.ts +2 -0
  127. package/lib/ui/ui-landing-header/types.d.ts +22 -0
  128. package/lib/ui/ui-landing-header/ui-landing-header.d.ts +4 -0
  129. package/lib/ui/ui-landing-header/ui-landing-header.stories.d.ts +7 -0
  130. package/lib/ui/ui-loader/index.d.ts +2 -0
  131. package/lib/ui/ui-loader/types.d.ts +4 -0
  132. package/lib/ui/ui-loader/ui-loader.d.ts +4 -0
  133. package/lib/ui/ui-phone/index.d.ts +2 -0
  134. package/lib/ui/ui-phone/types.d.ts +24 -0
  135. package/lib/ui/ui-phone/ui-phone.d.ts +4 -0
  136. package/lib/ui/ui-phone/ui-phone.stories.d.ts +5 -0
  137. package/lib/ui/ui-radio/index.d.ts +2 -0
  138. package/lib/ui/ui-radio/types.d.ts +6 -0
  139. package/lib/ui/ui-radio/ui-input.stories.d.ts +5 -0
  140. package/lib/ui/ui-radio/ui-radio.d.ts +4 -0
  141. package/lib/ui/ui-timer/index.d.ts +2 -0
  142. package/lib/ui/ui-timer/types.d.ts +8 -0
  143. package/lib/ui/ui-timer/ui-input.stories.d.ts +5 -0
  144. package/lib/ui/ui-timer/ui-timer.d.ts +4 -0
  145. package/lib/utils/go-to-app.d.ts +1 -0
  146. package/lib/utils/index.d.ts +2 -0
  147. package/lib/utils/scroll-to.d.ts +1 -0
  148. package/package.json +86 -0
@@ -0,0 +1,36 @@
1
+ import React, { CSSProperties } from "react";
2
+ export declare enum ModalType {
3
+ DEFAULT = "default",
4
+ LEFT = "left",
5
+ RIGHT = "right",
6
+ MOBILE_BOTTOM = "mobileBottom",
7
+ TOP = "top"
8
+ }
9
+ export type ModalContextProps = {
10
+ show: boolean;
11
+ children: React.ReactNode;
12
+ type?: ModalType;
13
+ element?: Element;
14
+ showHeader?: boolean;
15
+ title?: string;
16
+ closeElement?: React.ReactNode;
17
+ className?: string;
18
+ styles?: CSSProperties;
19
+ overlay?: {
20
+ className?: string;
21
+ styles?: CSSProperties;
22
+ };
23
+ content?: {
24
+ className?: string;
25
+ styles?: CSSProperties;
26
+ };
27
+ header?: {
28
+ className?: string;
29
+ styles?: CSSProperties;
30
+ };
31
+ body?: {
32
+ className?: string;
33
+ styles?: CSSProperties;
34
+ };
35
+ onClose?: () => void;
36
+ };
@@ -0,0 +1,16 @@
1
+ /// <reference types="react" />
2
+ import { ComponentStory } from '@storybook/react';
3
+ declare const _default: {
4
+ title: string;
5
+ component: ({ onPageChange, totalPageCount, siblingCount, currentPage, previousLabel, nextLabel, currentItemClassName, }: import("./paginationProps").PaginationProps) => JSX.Element | null;
6
+ argTypes: {
7
+ totalPageCount: number;
8
+ currentPage: number;
9
+ onPageChange: () => void;
10
+ };
11
+ };
12
+ export default _default;
13
+ export declare const Default: ComponentStory<({ onPageChange, totalPageCount, siblingCount, currentPage, previousLabel, nextLabel, currentItemClassName, }: import("./paginationProps").PaginationProps) => JSX.Element | null>;
14
+ export declare const WithCustomControls: ComponentStory<({ onPageChange, totalPageCount, siblingCount, currentPage, previousLabel, nextLabel, currentItemClassName, }: import("./paginationProps").PaginationProps) => JSX.Element | null>;
15
+ export declare const WithHtmlControls: ComponentStory<({ onPageChange, totalPageCount, siblingCount, currentPage, previousLabel, nextLabel, currentItemClassName, }: import("./paginationProps").PaginationProps) => JSX.Element | null>;
16
+ export declare const WithMoreSiblings: ComponentStory<({ onPageChange, totalPageCount, siblingCount, currentPage, previousLabel, nextLabel, currentItemClassName, }: import("./paginationProps").PaginationProps) => JSX.Element | null>;
@@ -0,0 +1 @@
1
+ export { default } from "./pagination";
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { PaginationProps } from './paginationProps';
3
+ declare const Pagination: ({ onPageChange, totalPageCount, siblingCount, currentPage, previousLabel, nextLabel, currentItemClassName, }: PaginationProps) => JSX.Element | null;
4
+ export default Pagination;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ export type PaginationProps = {
3
+ totalPageCount: number;
4
+ currentPage: number;
5
+ onPageChange: (page: number) => void;
6
+ previousLabel?: string | React.ReactNode | undefined;
7
+ nextLabel?: string | React.ReactNode | undefined;
8
+ siblingCount?: number;
9
+ currentItemClassName?: string;
10
+ };
@@ -0,0 +1,2 @@
1
+ export declare const DOTS = "...";
2
+ export declare const usePagination: ({ totalPageCount, siblingCount, currentPage }: any) => any[] | undefined;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ declare const ProgressBar: ({ width }: {
3
+ width: number;
4
+ }) => JSX.Element;
5
+ export default ProgressBar;
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import { LoginType } from "~/components/Login/types";
3
+ declare const SelectLoginMethod: ({ validationSuccess, apiUrl, apiKey, setStepTo, loginType, handleRegisterModal, }: {
4
+ validationSuccess: (token: string, expiresIn: number, refreshToken: string, channel: string) => void;
5
+ apiUrl: string;
6
+ apiKey: string;
7
+ setStepTo: (step: string) => void;
8
+ loginType: LoginType;
9
+ handleRegisterModal: () => void;
10
+ }) => JSX.Element;
11
+ export default SelectLoginMethod;
@@ -0,0 +1 @@
1
+ export { default } from "./SelectLoginMethod";
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { SliderProps } from "./Slider.type";
3
+ declare const Slider: ({ children, hideArrows, hideDots, iconBackArrow, iconNextArrow, dragMode, dotsStyle }: SliderProps) => JSX.Element;
4
+ export default Slider;
@@ -0,0 +1,16 @@
1
+ /// <reference types="react" />
2
+ import { ComponentStory } from '@storybook/react';
3
+ declare const _default: {
4
+ title: string;
5
+ component: ({ children, hideArrows, hideDots, iconBackArrow, iconNextArrow, dragMode, dotsStyle }: import("./Slider.type").SliderProps) => JSX.Element;
6
+ argTypes: {
7
+ hideArrows: boolean;
8
+ dragMode: boolean;
9
+ };
10
+ };
11
+ export default _default;
12
+ export declare const Slide: ComponentStory<({ children, hideArrows, hideDots, iconBackArrow, iconNextArrow, dragMode, dotsStyle }: import("./Slider.type").SliderProps) => JSX.Element>;
13
+ export declare const SlideArrowIcons: ComponentStory<({ children, hideArrows, hideDots, iconBackArrow, iconNextArrow, dragMode, dotsStyle }: import("./Slider.type").SliderProps) => JSX.Element>;
14
+ export declare const HiddenArrows: ComponentStory<({ children, hideArrows, hideDots, iconBackArrow, iconNextArrow, dragMode, dotsStyle }: import("./Slider.type").SliderProps) => JSX.Element>;
15
+ export declare const HiddenDots: ComponentStory<({ children, hideArrows, hideDots, iconBackArrow, iconNextArrow, dragMode, dotsStyle }: import("./Slider.type").SliderProps) => JSX.Element>;
16
+ export declare const DragMode: ComponentStory<({ children, hideArrows, hideDots, iconBackArrow, iconNextArrow, dragMode, dotsStyle }: import("./Slider.type").SliderProps) => JSX.Element>;
@@ -0,0 +1,16 @@
1
+ /// <reference types="react" />
2
+ export type SliderProps = {
3
+ children: React.ReactNode;
4
+ hideArrows?: boolean;
5
+ hideDots?: boolean;
6
+ dotsStyle?: DotsStyle;
7
+ dragMode?: boolean;
8
+ iconBackArrow?: JSX.Element;
9
+ iconNextArrow?: JSX.Element;
10
+ };
11
+ export type DotsStyle = {
12
+ type?: string;
13
+ backgroundColor?: string;
14
+ width?: string;
15
+ height?: string;
16
+ };
@@ -0,0 +1 @@
1
+ export { default } from "./Slider";
@@ -0,0 +1,10 @@
1
+ export { Modal } from "./Modal";
2
+ export { default as Slider } from "./Slider";
3
+ export { default as Pagination } from "./Pagination";
4
+ export { default as SelectLoginMethod } from "./SelectLoginMethod";
5
+ export * from "./Modal/types";
6
+ export * from "./Login";
7
+ export * from "./Inputs";
8
+ export * from "./DropDown";
9
+ export * from "./ErrorMessage";
10
+ export { default as ProgressBar } from "./ProgressBar/ProgressBar";
@@ -0,0 +1,30 @@
1
+ export declare const HOST: string;
2
+ export declare const DEV_HOST: string;
3
+ export declare const ASSETS_URL: string;
4
+ export declare const ASSETS_URL_2: string;
5
+ export declare const DEV_API_URL: string;
6
+ export declare const API_KEY: string;
7
+ export declare const API_KEY_SP: string;
8
+ export declare const SUPPORT_PHONE: string;
9
+ export declare const SUPPORT_CHANNEL: string;
10
+ export declare const COMMUNITY_URL: string;
11
+ export declare const BLOG_URL: string;
12
+ export declare const APP_INSTALLED_URL: string;
13
+ export declare const APP_STORE_ANDROID_URL: string;
14
+ export declare const APP_STORE_IOS_URL: string;
15
+ export declare const DOWNLOAD_APP_URL: string;
16
+ export declare const FLAGS_URL: string;
17
+ export declare const WEB_ASSETS: string;
18
+ export declare const OPEN_APP_STORE_ANDROID: string;
19
+ export declare const OPEN_APP_STORE_IOS: string;
20
+ export declare const OPEN_APP_INSTALLED: string;
21
+ export declare enum Breakpoints {
22
+ Mobile = "375px",
23
+ MobileMedium = "425px",
24
+ Tablet = "768px",
25
+ LaptopShort = "1024px",
26
+ LaptopMedium = "1440px",
27
+ LaptopLarge = "1980px"
28
+ }
29
+ export declare const ALPHANUMERIC_REGEX: RegExp;
30
+ export declare const NUMERIC_REGEX: RegExp;
@@ -0,0 +1 @@
1
+ export * from './constants';
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const ArrowDown: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default ArrowDown;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const ArrowTop: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default ArrowTop;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Chat: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default Chat;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const InfoIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default InfoIcon;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const LightSupport: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default LightSupport;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Password: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default Password;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const LightSupport: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default LightSupport;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const WhatsAppFill: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default WhatsAppFill;
@@ -0,0 +1,6 @@
1
+ export { default as ArrowDown } from './ArrowDown';
2
+ export { default as Chat } from './Chat';
3
+ export { default as ArrowTop } from './ArrowTop';
4
+ export { default as Information } from './Information';
5
+ export { default as WhatsAppFill } from './WhatsAppFill';
6
+ export { default as LightSupport } from './LightSupport';
package/lib/index.css ADDED
@@ -0,0 +1,24 @@
1
+ @import url('./icons.css');
2
+
3
+ @font-face {
4
+ font-family: 'icomoon';
5
+ src: url('../assets/fonts/icomoon.eot') format('embedded-opentype'),
6
+ url('../assets/fonts/icomoon.ttf') format('ttf'),
7
+ url('../assets/fonts/icomoon.woff') format('woff'),
8
+ url('../assets/fonts/icomoon.svg') format('svg');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ font-display: block;
12
+ }
13
+ @import url('./icons.css');
14
+
15
+ @font-face {
16
+ font-family: 'icomoon';
17
+ src: url('../assets/fonts/icomoon.eot') format('embedded-opentype'),
18
+ url('../assets/fonts/icomoon.ttf') format('ttf'),
19
+ url('../assets/fonts/icomoon.woff') format('woff'),
20
+ url('../assets/fonts/icomoon.svg') format('svg');
21
+ font-weight: normal;
22
+ font-style: normal;
23
+ font-display: block;
24
+ }
package/lib/index.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ export * from './components';
2
+ export * from './common';
3
+ export * from './icons';
4
+ export * from './constants';
5
+ export * from './ui';
6
+ export * from './utils';
7
+ export * from './providers';
@@ -0,0 +1,24 @@
1
+ @import url('./icons.css');
2
+
3
+ @font-face {
4
+ font-family: 'icomoon';
5
+ src: url('../assets/fonts/icomoon.eot') format('embedded-opentype'),
6
+ url('../assets/fonts/icomoon.ttf') format('ttf'),
7
+ url('../assets/fonts/icomoon.woff') format('woff'),
8
+ url('../assets/fonts/icomoon.svg') format('svg');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ font-display: block;
12
+ }
13
+ @import url('./icons.css');
14
+
15
+ @font-face {
16
+ font-family: 'icomoon';
17
+ src: url('../assets/fonts/icomoon.eot') format('embedded-opentype'),
18
+ url('../assets/fonts/icomoon.ttf') format('ttf'),
19
+ url('../assets/fonts/icomoon.woff') format('woff'),
20
+ url('../assets/fonts/icomoon.svg') format('svg');
21
+ font-weight: normal;
22
+ font-style: normal;
23
+ font-display: block;
24
+ }