@primer/react
Version:
An implementation of GitHub's Primer Design System using React
9 lines • 440 B
TypeScript
import React from 'react';
import type { SxProp } from '../../sx';
import type { ComponentProps } from '../../utils/types';
declare const ButtonClose: React.ForwardRefExoticComponent<React.ButtonHTMLAttributes<HTMLButtonElement> & {
theme?: any;
} & SxProp & React.RefAttributes<HTMLButtonElement>>;
export type ButtonCloseProps = ComponentProps<typeof ButtonClose>;
export default ButtonClose;
//# sourceMappingURL=ButtonClose.d.ts.map