-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #515 from MeetDOD/issue-412
Feat: Added preloader in style share successfully issue 412
- Loading branch information
Showing
3 changed files
with
191 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import "../index.css" | ||
|
||
const Preloader = () => { | ||
return ( | ||
<div className="fixed top-0 left-0 w-full h-full flex justify-center items-center z-50"> | ||
<svg viewBox="0 0 1320 300"> | ||
<text x="50%" y="50%" dy=".35em" textAnchor="middle" className="uppercase animate-stroke"> | ||
style share | ||
</text> | ||
</svg> | ||
</div> | ||
); | ||
} | ||
|
||
export default Preloader; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters