14 lines
324 B
TypeScript
14 lines
324 B
TypeScript
import { TWUI_LINK_LIST_LINK_OBJECT } from "@/components/lib/elements/LinkList";
|
|
|
|
type Props = {
|
|
link: TWUI_LINK_LIST_LINK_OBJECT;
|
|
};
|
|
|
|
export default function HeaderLink({ link }: Props) {
|
|
return (
|
|
<a href={link.url} className="text-white hover:text-gray-300">
|
|
{link.title}
|
|
</a>
|
|
);
|
|
}
|