mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
12 lines
512 B
TypeScript
12 lines
512 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const RepeatOne = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M56 96 L56 160 C56 176 72 192 88 192 L168 192 C184 192 200 176 200 160 L200 96 C200 80 184 64 168 64 L88 64 C72 64 56 80 56 96" />
|
|
<polyline points="80,40 56,64 80,88" />
|
|
<polyline points="176,168 200,192 176,216" />
|
|
<text x="120" y="144" fontSize="48" fill="currentColor" stroke="none" fontFamily="sans-serif" fontWeight="bold">1</text>
|
|
</Icon>
|
|
)
|