11 lines
741 B
TypeScript
11 lines
741 B
TypeScript
import { SVGProps } from "react";
|
|
const SvgComponent = (props: SVGProps<SVGSVGElement>) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
d="M12.077 19q-2.931 0-4.966-2.033-2.034-2.034-2.034-4.964t2.034-4.966T12.077 5q1.783 0 3.339.847 1.555.847 2.507 2.365V5.5q0-.213.144-.356T18.424 5t.356.144.143.356v3.923q0 .343-.232.576t-.576.232h-3.923q-.212 0-.356-.144t-.144-.357.144-.356.356-.143h3.2q-.78-1.496-2.197-2.364Q13.78 6 12.077 6q-2.5 0-4.25 1.75T6.077 12t1.75 4.25 4.25 1.75q1.787 0 3.271-.968 1.485-.969 2.202-2.573.085-.196.274-.275.19-.08.388-.013.211.067.28.275t-.015.404q-.833 1.885-2.56 3.017T12.077 19"
|
|
/>
|
|
</svg>
|
|
);
|
|
export { SvgComponent as Refresh };
|