UNPKG

box-ui-elements-mlh

Version:
13 lines (9 loc) 317 B
import PropTypes from 'prop-types'; import React from 'react'; const ItemListLoadingPlaceholder = ({ width = '80%' }) => ( <div className="item-list-loading-placeholder" style={{ width }} /> ); ItemListLoadingPlaceholder.propTypes = { width: PropTypes.string, }; export default ItemListLoadingPlaceholder;