LibreChat/src/components/Nav/NavLink.jsx

11 lines
282 B
React
Raw Normal View History

2023-02-06 13:27:28 -05:00
import React from 'react';
export default function NavLink({ svg, text }) {
return (
<a className="flex cursor-pointer items-center gap-3 rounded-md py-3 px-3 text-sm text-white transition-colors duration-200 hover:bg-gray-500/10">
{svg()}
{text}
</a>
);
}