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