mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
10 lines
506 B
TypeScript
10 lines
506 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Favorite = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M128 216 L54.4 252.4 C49.1 255.1 42.9 251.9 42.3 245.9 L32 168 L-19.3 117.7 C-23.5 113.5 -21.4 106.2 -15.4 105.1 L62 92.4 L97.6 24.6 C100.2 19.5 107.8 19.5 110.4 24.6 L146 92.4 L223.4 105.1 C229.4 106.2 231.5 113.5 227.3 117.7 L176 168 L165.7 245.9 C165.1 251.9 158.9 255.1 153.6 252.4 L128 216 Z"
|
|
fill="currentColor" stroke="none" />
|
|
</Icon>
|
|
)
|