UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

13 lines 409 B
import React, { FC, ReactNode } from "react"; import { NoticeStatus } from "./types"; type Props = React.ComponentProps<"div"> & { status?: NoticeStatus; onNoticeShow?: () => void; "aria-label": string; hidden?: boolean; className?: string; children?: ReactNode; }; declare const EbayInlineNotice: FC<Props>; export default EbayInlineNotice; //# sourceMappingURL=inline-notice.d.ts.map