mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 00:05:01 +00:00
10 lines
240 B
TypeScript
10 lines
240 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Redo = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="184 104 232 104 232 56" />
|
|
<path d="M32 184a88 88 0 0 1 88-88h112" />
|
|
</Icon>
|
|
)
|