@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
8 lines (7 loc) • 334 B
TypeScript
import { ButtonHTMLAttributes, DetailedHTMLProps, FC } from 'react';
export interface CloseIconProps extends DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {
appearance: 'small' | 'big';
color: 'black' | 'red';
isNotification?: boolean;
}
export declare const CloseIcon: FC<CloseIconProps>;