UNPKG

@magicbell/magicbell-react

Version:

React components for building a notification inbox for your app

11 lines (10 loc) 369 B
export interface StyledFooterProps { children: React.ReactElement | React.ReactElement[]; } /** * Container for the `Footer` component. Applies the theme defined for the footer. * * @example * <StyledFooter>Powered by MB</StyledFooter> */ export default function StyledFooter({ children }: StyledFooterProps): import("@emotion/react/jsx-runtime").JSX.Element;