mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const FirstPage = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<line x1="56" y1="48" x2="56" y2="208" />
|
|
<polyline points="152 56 88 128 152 200" />
|
|
</Icon>
|
|
)
|