import React from "react"; import { RectangleSkeleton } from "../rectangle"; import { StyledRestoreBackup } from "./Backup.styled"; import type { BackupLoaderProps } from "./Backup.types"; const RestoreBackupLoader = ({ id, className, style, ...rest }: BackupLoaderProps) => { const { title, borderRadius, backgroundColor, foregroundColor, backgroundOpacity, foregroundOpacity, speed, animate, } = rest; return (
); }; export default RestoreBackupLoader;