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 FastForward = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polygon points="32,64 128,128 32,192" />
|
|
<polygon points="128,64 224,128 128,192" />
|
|
</Icon>
|
|
)
|