-
Notifications
You must be signed in to change notification settings - Fork 6
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
Showing
1 changed file
with
29 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
interface RefreshProps { | ||
width?: number; | ||
height?: number; | ||
} | ||
|
||
export function Refresh({ width = 20, height = 20 }: RefreshProps) { | ||
return ( | ||
<svg | ||
width={width} | ||
height={height} | ||
viewBox="0 0 20 20" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<g id="122.최신화,새로고침 1"> | ||
<path | ||
id="Vector" | ||
d="M12.5 7.5L16.6667 3.33334V7.5H12.5Z" | ||
fill="#B4B5BF" | ||
/> | ||
<path | ||
id="Vector_2" | ||
d="M10 17.5C5.86667 17.5 2.5 14.1333 2.5 10C2.5 5.86667 5.86667 2.5 10 2.5C12.0083 2.5 13.8917 3.28333 15.3 4.7L14.125 5.87499C13.025 4.77499 11.5583 4.16667 10 4.16667C6.78333 4.16667 4.16667 6.78333 4.16667 10C4.16667 13.2167 6.78333 15.8333 10 15.8333C13.2167 15.8333 15.8333 13.2167 15.8333 10H17.5C17.5 14.1333 14.1333 17.5 10 17.5Z" | ||
fill="#B4B5BF" | ||
/> | ||
</g> | ||
</svg> | ||
); | ||
} |