parent
88c0fd870f
commit
a2a7ffb1ed
10 changed files with 198 additions and 72 deletions
@ -0,0 +1,72 @@ |
|||||||
|
import React from "react"; |
||||||
|
|
||||||
|
export const DropDown = ({}) => { |
||||||
|
return ( |
||||||
|
<div> |
||||||
|
<button |
||||||
|
id="dropdownButton" |
||||||
|
data-dropdown-toggle="dropdown" |
||||||
|
className="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-4 py-2.5 text-center inline-flex items-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800" |
||||||
|
type="button" |
||||||
|
> |
||||||
|
Dropdown button{" "} |
||||||
|
<svg |
||||||
|
className="ml-2 w-4 h-4" |
||||||
|
fill="none" |
||||||
|
stroke="currentColor" |
||||||
|
viewBox="0 0 24 24" |
||||||
|
xmlns="http://www.w3.org/2000/svg" |
||||||
|
> |
||||||
|
<path |
||||||
|
stroke-linecap="round" |
||||||
|
stroke-linejoin="round" |
||||||
|
stroke-width="2" |
||||||
|
d="M19 9l-7 7-7-7" |
||||||
|
></path> |
||||||
|
</svg> |
||||||
|
</button> |
||||||
|
|
||||||
|
<div |
||||||
|
id="dropdown" |
||||||
|
className="hidden z-10 w-44 text-base list-none bg-white rounded divide-y divide-gray-100 shadow dark:bg-gray-700" |
||||||
|
> |
||||||
|
<ul className="py-1" aria-labelledby="dropdownButton"> |
||||||
|
<li> |
||||||
|
<a |
||||||
|
href="#" |
||||||
|
className="block py-2 px-4 text-sm text-gray-700 hover:bg-gray-100 dark:hover:bg-gray-600 dark:text-gray-200 dark:hover:text-white" |
||||||
|
> |
||||||
|
Dashboard |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a |
||||||
|
href="#" |
||||||
|
className="block py-2 px-4 text-sm text-gray-700 hover:bg-gray-100 dark:hover:bg-gray-600 dark:text-gray-200 dark:hover:text-white" |
||||||
|
> |
||||||
|
Settings |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a |
||||||
|
href="#" |
||||||
|
className="block py-2 px-4 text-sm text-gray-700 hover:bg-gray-100 dark:hover:bg-gray-600 dark:text-gray-200 dark:hover:text-white" |
||||||
|
> |
||||||
|
Earnings |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a |
||||||
|
href="#" |
||||||
|
className="block py-2 px-4 text-sm text-gray-700 hover:bg-gray-100 dark:hover:bg-gray-600 dark:text-gray-200 dark:hover:text-white" |
||||||
|
> |
||||||
|
Sign out |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
</ul> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
); |
||||||
|
}; |
||||||
|
|
||||||
|
export default DropDown; |
@ -0,0 +1,13 @@ |
|||||||
|
import React from "react"; |
||||||
|
import settings from "./settings.svg"; |
||||||
|
|
||||||
|
export const Settings = ({}) => { |
||||||
|
return ( |
||||||
|
<div |
||||||
|
style={{ backgroundColor: "#F9FBFF" }} |
||||||
|
className="mr-2 flex flex-col items-center justify-center p-1 rounded" |
||||||
|
> |
||||||
|
<img src={settings} className="w-6 h-6 cursor-pointer" /> |
||||||
|
</div> |
||||||
|
); |
||||||
|
}; |
Loading…
Reference in new issue