mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
14 lines
431 B
TypeScript
14 lines
431 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Transform = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="48" y="48" width="72" height="72" rx="4" />
|
|
<rect x="136" y="136" width="72" height="72" rx="4" />
|
|
<path d="M120 84 L172 136" />
|
|
<polyline points="172,112 172,136 148,136" />
|
|
<path d="M136 172 L84 120" />
|
|
<polyline points="84,144 84,120 108,120" />
|
|
</Icon>
|
|
)
|