@primer/react
Version:
An implementation of GitHub's Primer Design System using React
7 lines • 417 B
TypeScript
import type { ComponentPropsWithRef } from 'react';
import type { ForwardRefComponent as PolymorphicForwardRefComponent } from '../utils/polymorphic';
import type { ButtonProps } from './types';
declare const ButtonBase: PolymorphicForwardRefComponent<"button" | "a", ButtonProps>;
export type ButtonBaseProps = ComponentPropsWithRef<typeof ButtonBase>;
export { ButtonBase };
//# sourceMappingURL=ButtonBase.d.ts.map