Files
metabuilder/fakemui/icons/RotateRight.tsx
2025-12-30 13:47:19 +00:00

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