@magicbell/magicbell-react
Version:
React components for building a notification inbox for your app
13 lines (12 loc) • 334 B
TypeScript
import { ReactNode } from 'react';
export type FooterProps = {
children?: ReactNode;
};
/**
* Footer for the notification inbox. Renders a button to toggle the user
* preferences panel.
*
* @example
* <Footer />
*/
export default function Footer({ children }: FooterProps): import("@emotion/react/jsx-runtime").JSX.Element;