import { Link, LinkProps } from '@chakra-ui/react'; import React from 'react'; import { open } from '@tauri-apps/api/shell'; const ExternalLink = React.forwardRef((props, ref) => { return ( { e.preventDefault(); props.href && open(props.href); }} > ); }); export default ExternalLink;