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

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