@xcritical/button
Version:
5 lines (4 loc) • 393 B
TypeScript
import React from 'react';
import { IButtonProps } from './interfaces';
export declare const PureButton: React.ForwardRefExoticComponent<Pick<IButtonProps, keyof IButtonProps> & React.RefAttributes<HTMLButtonElement>>;
export declare const Button: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<IButtonProps, keyof IButtonProps> & React.RefAttributes<HTMLButtonElement>>>;