UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

11 lines (10 loc) 247 B
import { FunctionComponent } from 'react'; interface LinkProps { url: string; label?: string; } /** * `Link` displays a clickable link when supported by the terminal. */ declare const Link: FunctionComponent<LinkProps>; export { Link };