@ebay/ui-core-react
Version:
Skin components build off React
11 lines • 486 B
TypeScript
import { ComponentProps, FC, KeyboardEventHandler, MouseEventHandler } from "react";
export type PageNoticeStatus = "general" | "attention" | "confirmation" | "information";
export type Props = ComponentProps<"section"> & {
status?: PageNoticeStatus;
"aria-label"?: string;
a11yDismissText?: string;
onDismiss?: MouseEventHandler & KeyboardEventHandler;
};
declare const EbayPageNotice: FC<Props>;
export default EbayPageNotice;
//# sourceMappingURL=page-notice.d.ts.map