import React, { useContext } from 'react'; import { AbstractButton, ButtonProps, LinkButtonProps } from './AbstractButton'; import { ThemeContext } from '../../themes'; export const Button: React.FunctionComponent = props => { const theme = useContext(ThemeContext); return ; }; Button.displayName = 'Button'; export const LinkButton: React.FunctionComponent = props => { const theme = useContext(ThemeContext); return ; }; LinkButton.displayName = 'LinkButton';