Files
metabuilder/icons/react/fakemui/RotateLeft.tsx
2026-03-09 22:30:41 +00:00

10 lines
262 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const RotateLeft = (props: IconProps) => (
<Icon {...props}>
<path d="M128 40a88 88 0 1 0 88 88" fill="none" />
<polyline points="88 24 128 40 88 56" fill="none" />
</Icon>
)