this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23e2f59033cebc3e9a956065a53d8a95cd52df61 16 lines 290 B view raw
1import './loader.css'; 2 3function Loader({ abrupt, hidden, ...props }) { 4 return ( 5 <span 6 {...props} 7 class={`loader-container ${abrupt ? 'abrupt' : ''} ${ 8 hidden ? 'hidden' : '' 9 }`} 10 > 11 <span class="loader" /> 12 </span> 13 ); 14} 15 16export default Loader;