Files
metabuilder/icons/react/fakemui/Send.tsx
2026-03-09 22:30:41 +00:00

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>
)