mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
265 B
TypeScript
10 lines
265 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const RotateRight = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M128 40a88 88 0 1 1-88 88" fill="none" />
|
|
<polyline points="168 24 128 40 168 56" fill="none" />
|
|
</Icon>
|
|
)
|