mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const CallSplit = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<line x1="128" y1="128" x2="128" y2="224" />
|
|
<polyline points="64 96 128 32 192 96" />
|
|
<path d="M128 128l-48 48" />
|
|
<path d="M128 128l48 48" />
|
|
</Icon>
|
|
)
|