Files
metabuilder/fakemui/icons/Redo.tsx

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>
)