UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

7 lines (6 loc) 330 B
import { LinkButtonProps } from './types'; import { ButtonBaseProps } from './ButtonBase'; import { ForwardRefComponent as PolymorphicForwardRefComponent } from '../utils/polymorphic'; type MyProps = LinkButtonProps & ButtonBaseProps; declare const LinkButton: PolymorphicForwardRefComponent<"a", MyProps>; export { LinkButton };