UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

9 lines (8 loc) 389 B
import React from 'react'; import { SxProp } from '../../sx'; import { 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;