Skip to content

Commit

Permalink
feat: icon 등록
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed Apr 9, 2024
1 parent 3bdff4f commit dcb81e4
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/components/icons/Refresh.tsx
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.&#225;&#132;&#142;&#225;&#133;&#172;&#225;&#132;&#137;&#225;&#133;&#181;&#225;&#134;&#171;&#225;&#132;&#146;&#225;&#133;&#170;,&#225;&#132;&#137;&#225;&#133;&#162;&#225;&#132;&#133;&#225;&#133;&#169;&#225;&#132;&#128;&#225;&#133;&#169;&#225;&#132;&#142;&#225;&#133;&#181;&#225;&#134;&#183; 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>
);
}

0 comments on commit dcb81e4

Please sign in to comment.