mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
242 B
TypeScript
10 lines
242 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const SkipNext = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polygon points="80,64 176,128 80,192" />
|
|
<line x1="192" y1="64" x2="192" y2="192" />
|
|
</Icon>
|
|
)
|