Files
metabuilder/icons/react/fakemui/SkipNext.tsx
2026-03-09 22:30:41 +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>
)