mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
10 lines
240 B
TypeScript
10 lines
240 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Plus = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<line x1="40" y1="128" x2="216" y2="128" />
|
|
<line x1="128" y1="40" x2="128" y2="216" />
|
|
</Icon>
|
|
)
|