LibreChat/src/components/Nav/NavLink.jsx

15 lines
404 B
React
Raw Normal View History

2023-02-06 13:27:28 -05:00
import React from 'react';
export default function NavLink({ svg, text, clickHandler}) {
// const props
// if (clickHandler) {
// }
// return (
// <a {clickHandler && onClick={clickHandler}} 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>
// );
2023-02-06 13:27:28 -05:00
}