Files
metabuilder/fakemui/icons/SkipNext.tsx
2025-12-30 12:58:42 +00:00

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