import React from "react"; import { RectangleSkeleton } from "@docspace/shared/skeletons"; import { StyledComponent } from "./StyledComponent"; const NotificationsLoader = ({ title, borderRadius, backgroundColor, foregroundColor, backgroundOpacity, foregroundOpacity, speed, count = 1, }) => { const items = []; const contentItem = ( <>
); for (var i = 0; i < count; i++) { items.push( {contentItem} ); } return items; }; export default NotificationsLoader;