Skip to content

Commit

Permalink
#26: Ajout du composant MenuLink dans le répertoire Pour une Customis…
Browse files Browse the repository at this point in the history
…ation Generique futur
  • Loading branch information
latioms committed May 2, 2024
1 parent 4fb5890 commit 33e2fa4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions web/app/(CService)/components/ui/atomics/MenuLink.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from 'react'

function MenuLink() {
return (
<a href="#" className="flex items-center p-2 text-gray-900 rounded-lg dark:text-white hover:bg-gray-100 dark:hover:bg-gray-700 group">
<svg className="w-5 h-5 text-gray-500 transition duration-75 dark:text-gray-400 group-hover:text-gray-900 dark:group-hover:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 22 21">
<path d="M16.975 11H10V4.025a1 1 0 0 0-1.066-.998 8.5 8.5 0 1 0 9.039 9.039.999.999 0 0 0-1-1.066h.002Z"/>
<path d="M12.5 0c-.157 0-.311.01-.565.027A1 1 0 0 0 11 1.02V10h8.975a1 1 0 0 0 1-.935c.013-.188.028-.374.028-.565A8.51 8.51 0 0 0 12.5 0Z"/>
</svg>
<span className="ms-3">Dashboard</span>
</a>
)
}

export default MenuLink

0 comments on commit 33e2fa4

Please sign in to comment.