@primer/react
Version:
An implementation of GitHub's Primer Design System using React
6 lines • 341 B
TypeScript
import type { LinkButtonProps, ButtonProps } from './types';
import type { ForwardRefComponent as PolymorphicForwardRefComponent } from '../utils/polymorphic';
type MyProps = LinkButtonProps & ButtonProps;
declare const LinkButton: PolymorphicForwardRefComponent<"a", MyProps>;
export { LinkButton };
//# sourceMappingURL=LinkButton.d.ts.map