-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
282101b
commit ed5c1a9
Showing
3 changed files
with
79 additions
and
22 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
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,26 @@ | ||
import React from "react"; | ||
import type { IconProps } from "./props"; | ||
|
||
const Replay = ({ | ||
size = "1em", | ||
fill = "currentColor", | ||
className, | ||
}: IconProps) => ( | ||
<svg | ||
viewBox="0 0 16 13" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
className={className} | ||
height={size} | ||
width={size} | ||
> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M5.81506 2.30058C3.62313 2.30062 1.99588 3.83075 1.62464 5.44617C1.52874 5.86347 1.11271 6.12402 0.695405 6.02812C0.278102 5.93222 0.0175536 5.51619 0.113454 5.09888C0.643729 2.79144 2.88813 0.750054 5.81503 0.75C9.52233 0.749932 11.8882 3.73207 11.8882 6.82311C11.8882 7.52813 11.7534 8.22031 11.5084 8.86955L14.5756 8.2932C14.9964 8.21412 15.4016 8.49116 15.4807 8.91197C15.5598 9.33279 15.2827 9.73803 14.8619 9.81711L10.1994 10.6932C9.92411 10.745 9.64234 10.6442 9.4623 10.4296L6.3061 6.66822C6.03087 6.34021 6.07366 5.85119 6.40166 5.57596C6.72967 5.30073 7.21869 5.34352 7.49392 5.67152L9.9454 8.59308C10.1995 8.03084 10.3376 7.427 10.3376 6.82311C10.3376 4.48762 8.56852 2.30053 5.81506 2.30058ZM5.42684 12.2497C5.85502 12.2497 6.20213 11.9026 6.20213 11.4744C6.20213 11.0462 5.85502 10.6991 5.42684 10.6991C4.99866 10.6991 4.65155 11.0462 4.65155 11.4744C4.65155 11.9026 4.99866 12.2497 5.42684 12.2497ZM3.36002 10.5701C3.36002 10.9983 3.01291 11.3454 2.58473 11.3454C2.15655 11.3454 1.80944 10.9983 1.80944 10.5701C1.80944 10.1419 2.15655 9.79481 2.58473 9.79481C3.01291 9.79481 3.36002 10.1419 3.36002 10.5701ZM0.77529 9.27791C1.20347 9.27791 1.55058 8.9308 1.55058 8.50262C1.55058 8.07444 1.20347 7.72733 0.77529 7.72733C0.347109 7.72733 0 8.07444 0 8.50262C0 8.9308 0.347109 9.27791 0.77529 9.27791Z" | ||
fill={fill} | ||
/> | ||
</svg> | ||
); | ||
|
||
export default Replay; |