chore(client): Move client app to /client
This commit is contained in:
committed by
mrugesh mohapatra
parent
0e4f588a1c
commit
e59ad6ebda
26
client/src/components/helpers/SkeletonSprite.js
Normal file
26
client/src/components/helpers/SkeletonSprite.js
Normal file
@@ -0,0 +1,26 @@
|
||||
import React from 'react';
|
||||
|
||||
import styles from './skeletonStyles';
|
||||
|
||||
function SkeletonSprite() {
|
||||
return (
|
||||
<div className='sprite-container'>
|
||||
<style dangerouslySetInnerHTML={ { __html: styles } } />
|
||||
<svg className='sprite-svg'>
|
||||
<rect
|
||||
className='sprite'
|
||||
fill='#ccc'
|
||||
height='100%'
|
||||
stroke='#ccc'
|
||||
width='2px'
|
||||
x='0'
|
||||
y='0'
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
SkeletonSprite.displayName = 'SkeletonSprite';
|
||||
|
||||
export default SkeletonSprite;
|
Reference in New Issue
Block a user