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