mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Zap = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polygon points="160 16 48 136 120 136 96 240 208 120 136 120 160 16" />
|
|
</Icon>
|
|
)
|