mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 16:24:58 +00:00
9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Lightning = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M96 240 112 160 48 136 160 16 144 96 208 120Z" />
|
|
</Icon>
|
|
)
|