Link component for Ink
npm install ink-link> Link component for Ink
Creates clickable links in the terminal!

``sh`
npm install ink-link
`js
import React from 'react';
import {render, Text} from 'ink';
import Link from 'ink-link';
render(
My
);
`
For unsupported terminals, the link will be printed after the text: My website https://sindresorhus.com.
#### url
Type: string
The URL to link to.
#### fallback
Type: boolean | (text: string, url: string) => string\true
Default:
Determines whether the URL should be printed after the text for unsupported terminals: My website https://sindresorhus.com.
Can also be a function that receives the text and URL and returns a custom fallback string.
`js${text}
}>``
My Website
- terminal-link - Create clickable links in the terminal
- ink-gradient - Gradient color component for Ink
- ink-big-text - Awesome text component for Ink