import React from 'react';
import { Link, LinkText, Icon, HStack, Text, ArrowRightIcon, ArrowLeftIcon } from '@gluestack-ui/themed';
const LinkBasic = ({ ...props }: any) => {
return (
{{#if hasIconToolkit}}
{{/if}}
MentorMate
{{#if hasIconToolkit}}
{{/if}}
);
};
LinkBasic.description =
'This is a basic Link component example. A link is a component that users can tap to navigate to a new page.';
export default LinkBasic;
export { Link, LinkText, Icon, HStack, Text, ArrowRightIcon, ArrowLeftIcon };