mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const FunnelSimple = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<line x1="24" y1="80" x2="232" y2="80" />
|
|
<line x1="64" y1="128" x2="192" y2="128" />
|
|
<line x1="104" y1="176" x2="152" y2="176" />
|
|
</Icon>
|
|
)
|