Files
metabuilder/fakemui/icons/Lightning.tsx

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>
)