mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-30 00:34:56 +00:00
12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const CompareArrows = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<line x1="48" y1="88" x2="208" y2="88" />
|
|
<polyline points="168 48 208 88 168 128" />
|
|
<line x1="208" y1="168" x2="48" y2="168" />
|
|
<polyline points="88 128 48 168 88 208" />
|
|
</Icon>
|
|
)
|