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