Files
metabuilder/icons/react/fakemui/RotateRight.tsx
2026-03-09 22:30:41 +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>
)