import React from 'react'; import { Color } from "../../core/types"; export interface ILink { /** Children, wrapped in Text element */ children?: React.ReactNode; /** href */ href?: string; /** Optionally toggle text underline */ underline?: boolean; /** Set Link Color */ color?: Color; /** onClick handler */ onClick?: React.EventHandler>; /** Specify if link is external to add correct styling */ isExternal?: boolean; }