mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-30 08:44:57 +00:00
8 lines
670 B
TypeScript
8 lines
670 B
TypeScript
import { Icon, type IconProps } from './Icon'
|
|
|
|
export const Autorenew = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M232 128a104.12 104.12 0 0 1-177.51 73.51L38.71 185.72a8 8 0 0 1-5.31-7.54V128a8 8 0 0 1 8-8h50.18a8 8 0 0 1 5.31 14.01l-18.01 16.09A72 72 0 0 0 200 128a72.12 72.12 0 0 0-2.21-17.92 8.00037 8.00037 0 0 1 15.5-4 88.24 88.24 0 0 1 2.71 21.92Zm-23.5-73.82a8.00037 8.00037 0 0 0-11.32.22A88 88 0 0 0 40 128a88.24 88.24 0 0 0 2.71 21.92 8.00037 8.00037 0 0 0 15.5-4A72.12 72.12 0 0 1 56 128a72 72 0 0 1 123.12-50.09l-18.01 16.09a8 8 0 0 0 5.31 14.01h50.18a8 8 0 0 0 8-8V49.82a8 8 0 0 0-5.31-7.54 8.00037 8.00037 0 0 0-10.79 11.9Z" />
|
|
</Icon>
|
|
)
|