export type LinkItemProps = { className?: string; text: string; url: string; alt?: string; }; export const LinkItem = (props: LinkItemProps) => { return ( {props.text} ); };