mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Refresh = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="176.2 99.7 224.2 99.7 224.2 51.7" />
|
|
<path d="M190.2 190.2a88 88 0 1 1 0-124.4l34 34" />
|
|
</Icon>
|
|
)
|