File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
packages/pancake-uikit/src/components/Svg Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change
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 ;
Original file line number Diff line number Diff line change @@ -57,5 +57,6 @@ export { default as SyncAltIcon } from "./Icons/SyncAlt";
57
57
export { default as VolumeOffIcon } from "./Icons/VolumeOff" ;
58
58
export { default as VolumeUpIcon } from "./Icons/VolumeUp" ;
59
59
export { default as WarningIcon } from "./Icons/Warning" ;
60
+ export { default as RefreshIcon } from "./Icons/Refresh" ;
60
61
export { default as Svg } from "./Svg" ;
61
62
export type { SvgProps } from "./types" ;
You can’t perform that action at this time.
0 commit comments