import * as React from 'react'; import LinkButton from './LinkButton'; import { LinkBaseProps } from './LinkBase'; export interface LinkPrimaryButtonProps extends LinkBaseProps { children: React.ReactChild; className?: string; } const LinkPrimaryButton = ({ className = '', ...rest }: LinkPrimaryButtonProps) => ( ); export default LinkPrimaryButton;