import React from "react"; import PropTypes from "prop-types"; import StyledRow from "./StyledHistoryRowsLoader"; import RectangleLoader from "../RectangleLoader"; const HistoryRow = ({ id, className, style, ...rest }) => { const { title, borderRadius, backgroundColor, foregroundColor, backgroundOpacity, foregroundOpacity, speed, animate, } = rest; return ( ); }; const HistoryRowsLoader = (props) => { return ( <> ); }; HistoryRowsLoader.propTypes = { id: PropTypes.string, className: PropTypes.string, style: PropTypes.object, }; HistoryRowsLoader.defaultProps = { id: undefined, className: undefined, style: undefined, }; export default HistoryRowsLoader;