mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Undo = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="72 104 24 104 24 56" />
|
|
<path d="M224 184a88 88 0 0 0-88-88H24" />
|
|
</Icon>
|
|
)
|