mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 02:04:54 +00:00
10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const ArrowClockwise = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="176 96 224 96 224 48" />
|
|
<path d="M190.2,190.2a96,96,0,1,1,0-135.8l33.8,33.8" />
|
|
</Icon>
|
|
)
|