Files
metabuilder/icons/react/fakemui/Sparkle.tsx
2026-03-09 22:30:41 +00:00

10 lines
465 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Sparkle = (props: IconProps) => (
<Icon {...props}>
<path d="M80 36l12.8 38.4a8 8 0 0 0 5.1 5.1L136 92l-38.1 12.5a8 8 0 0 0-5.1 5.1L80 148l-12.8-38.4a8 8 0 0 0-5.1-5.1L24 92l38.1-12.5a8 8 0 0 0 5.1-5.1Z" />
<path d="M168 160l9.6 28.8a8 8 0 0 0 5.1 5.1L212 204l-29.3 10a8 8 0 0 0-5.1 5.1L168 248l-9.6-28.9a8 8 0 0 0-5.1-5.1L124 204l29.3-10a8 8 0 0 0 5.1-5.1Z" />
</Icon>
)