Files
metabuilder/fakemui/icons/ArrowClockwise.tsx

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