UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

9 lines 309 B
import { FC, ReactNode } from "react"; export type NoticeContentProps = { type: "inline" | "section" | "page" | "education"; className?: string; children?: ReactNode; }; declare const NoticeContent: FC<NoticeContentProps>; export default NoticeContent; //# sourceMappingURL=notice-content.d.ts.map