mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Send = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M48 128l160-80-80 160v-80H48Z" />
|
|
<line x1="128" y1="128" x2="208" y2="48" />
|
|
</Icon>
|
|
)
|