l-min-components 0.6.0 → 0.7.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/package.json
CHANGED
|
@@ -1,16 +1,10 @@
|
|
|
1
|
-
import { useState, useEffect, useRef } from "react";
|
|
1
|
+
import React, { useState, useEffect, useRef } from "react";
|
|
2
2
|
import ReactFlagsSelect from "react-flags-select";
|
|
3
3
|
import logo from "./assets/images/logo.png";
|
|
4
|
-
import {
|
|
5
|
-
Navbar2,
|
|
6
|
-
NavGroup2,
|
|
7
|
-
Nav2,
|
|
8
|
-
CountryFlagGroup2,
|
|
9
|
-
} from "./index.styled";
|
|
4
|
+
import { Navbar2, NavGroup2, Nav2, CountryFlagGroup2 } from "./index.styled";
|
|
10
5
|
import { ArrowDownIcon } from "./assets/svg/arrow-down";
|
|
11
6
|
import ButtonComponent from "../button";
|
|
12
7
|
|
|
13
|
-
|
|
14
8
|
/**
|
|
15
9
|
* @param {{
|
|
16
10
|
* type: string,
|
|
@@ -61,10 +55,9 @@ const HeaderComponentTwo = (props) => {
|
|
|
61
55
|
<ArrowDownIcon />
|
|
62
56
|
</CountryFlagGroup2>
|
|
63
57
|
|
|
64
|
-
<ButtonComponent type="secondary" text="Log in"/>
|
|
58
|
+
<ButtonComponent type="secondary" text="Log in" />
|
|
65
59
|
</NavGroup2>
|
|
66
60
|
</Navbar2>
|
|
67
|
-
|
|
68
61
|
);
|
|
69
62
|
};
|
|
70
63
|
|
package/src/components/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export { default as
|
|
1
|
+
export { default as Header } from "./header/index";
|
|
2
|
+
export { default as LoginHeader } from "./header/login-header";
|