Skip to content

Commit 60d9b34

Browse files
authored
feat: Refresh icon (#27)
1 parent 12bbfb3 commit 60d9b34

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import React from "react";
2+
import Svg from "../Svg";
3+
import { SvgProps } from "../types";
4+
5+
const Icon: React.FC<SvgProps> = (props) => {
6+
return (
7+
<Svg viewBox="0 0 24 24" {...props}>
8+
<path d="M17.65 6.35C16.02 4.72 13.71 3.78 11.17 4.04C7.50002 4.41 4.48002 7.39 4.07002 11.06C3.52002 15.91 7.27002 20 12 20C15.19 20 17.93 18.13 19.21 15.44C19.53 14.77 19.05 14 18.31 14C17.94 14 17.59 14.2 17.43 14.53C16.3 16.96 13.59 18.5 10.63 17.84C8.41002 17.35 6.62002 15.54 6.15002 13.32C5.31002 9.44 8.26002 6 12 6C13.66 6 15.14 6.69 16.22 7.78L14.71 9.29C14.08 9.92 14.52 11 15.41 11H19C19.55 11 20 10.55 20 10V6.41C20 5.52 18.92 5.07 18.29 5.7L17.65 6.35Z" />
9+
</Svg>
10+
);
11+
};
12+
13+
export default Icon;

packages/pancake-uikit/src/components/Svg/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,6 @@ export { default as SyncAltIcon } from "./Icons/SyncAlt";
5757
export { default as VolumeOffIcon } from "./Icons/VolumeOff";
5858
export { default as VolumeUpIcon } from "./Icons/VolumeUp";
5959
export { default as WarningIcon } from "./Icons/Warning";
60+
export { default as RefreshIcon } from "./Icons/Refresh";
6061
export { default as Svg } from "./Svg";
6162
export type { SvgProps } from "./types";

0 commit comments

Comments
 (0)