import React from 'react'; import Button from '@atlaskit/button/standard-button'; import type { FunctionComponent } from 'react'; import type { OnClickHandler } from './types'; export interface LinkHandlerProps extends Partial { href: string; children?: React.ReactNode; } export const LinkHandler: FunctionComponent = ({ appearance = 'link', children, disabled, hidden, href, iconAfter, iconBefore, onAction, spacing, }) => { if (hidden) { return null; } return ( ); };