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