@alice-ui/react
Version:
15 lines (12 loc) • 532 B
text/typescript
import * as react from 'react';
import { IconButtonProps } from './icon-button.mjs';
import '@alice-ui/theme';
import 'react-aria-components';
interface CloseButtonProps extends Omit<IconButtonProps, 'aria-label'> {
'aria-label'?: string;
}
/**
* A button allows a user to perform an action, with mouse, touch, and keyboard interactions.
*/
declare const _CloseButton: react.ForwardRefExoticComponent<CloseButtonProps & react.RefAttributes<HTMLButtonElement>>;
export { _CloseButton as CloseButton, type CloseButtonProps };