Dashboard sipadu mbip
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

CloseButton.d.ts 240B

12345678910
  1. import * as React from 'react';
  2. export interface CloseButtonProps {
  3. label?: string;
  4. onClick?: React.MouseEventHandler<CloseButton>;
  5. }
  6. declare class CloseButton extends React.Component<CloseButtonProps> {}
  7. export default CloseButton;