UNPKG

@magicbell/magicbell-react

Version:

React components for building a notification inbox for your app

16 lines (15 loc) 448 B
interface StyledContainerProps { height?: number; children: React.ReactElement | React.ReactElement[]; layout: string[]; } /** * Container for the notification inbox. * * @example * <StyledContainer height={500}> * <p>Cannot fetch notifications</p> * </StyledContainer> */ export default function StyledContainer({ height, children, layout }: StyledContainerProps): import("@emotion/react/jsx-runtime").JSX.Element; export {};