mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
11 lines
286 B
TypeScript
11 lines
286 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Code = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="64 88 16 128 64 168" />
|
|
<polyline points="192 88 240 128 192 168" />
|
|
<line x1="160" y1="40" x2="96" y2="216" />
|
|
</Icon>
|
|
)
|