-
Notifications
You must be signed in to change notification settings - Fork 0
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 #55 from UjjwalSaini07/Release4EnhancementB2
Pre-Release Checking
- Loading branch information
Showing
15 changed files
with
355 additions
and
80 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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,29 @@ | ||
.bar { | ||
animation: bounce 0.5s ease-in-out infinite alternate; | ||
transform-origin: bottom; /* Anchor scaling from bottom */ | ||
} | ||
|
||
.bar1 { | ||
animation-delay: 0.1s; | ||
} | ||
|
||
.bar2 { | ||
animation-delay: 0.2s; | ||
} | ||
|
||
.bar3 { | ||
animation-delay: 0.3s; | ||
} | ||
|
||
.bar4 { | ||
animation-delay: 0.4s; | ||
} | ||
|
||
@keyframes bounce { | ||
from { | ||
transform: scaleY(0.2); /* Smallest scale */ | ||
} | ||
to { | ||
transform: scaleY(1); /* Full height */ | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,39 @@ | ||
import * as React from "react"; | ||
import ".././Pages/Styles/Equalizer.css"; | ||
|
||
const SVGComponent = (props) => ( | ||
<svg | ||
id="equalizer" | ||
width="24px" | ||
height="26px" | ||
viewBox="0 0 25 17.5" | ||
xmlns="http://www.w3.org/2000/svg" | ||
xmlnsXlink="http://www.w3.org/1999/xlink" | ||
{...props} | ||
> | ||
<g fill="#fff"> | ||
<path | ||
id="bar1" | ||
className="bar bar1" | ||
d="M0 12.5H2.5V17.5H0V12.5z" | ||
/> | ||
<path | ||
id="bar2" | ||
className="bar bar2" | ||
d="M7.5 5H10V17.5H7.5V5z" | ||
/> | ||
<path | ||
id="bar3" | ||
className="bar bar3" | ||
d="M15 0H17.5V17.5H15V0z" | ||
/> | ||
<path | ||
id="bar4" | ||
className="bar bar4" | ||
d="M22.5 7.5H25V17.5H22.5V7.5z" | ||
/> | ||
</g> | ||
</svg> | ||
); | ||
|
||
export default SVGComponent; |
Oops, something went wrong.