20 lines
948 B
TypeScript
20 lines
948 B
TypeScript
import React from 'react';
|
|
import { CustomSVGProps } from '../type';
|
|
import '../index.less';
|
|
|
|
const Firefilled = (props: CustomSVGProps) => (
|
|
<span className={'icon'}>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="1em"
|
|
height="1em"
|
|
className="fire-filled__icon"
|
|
viewBox="0 0 1024 1024"
|
|
{...props}
|
|
>
|
|
<path fill="currentColor" fillRule="nonzero" d="M347.008 960c-59.712-124.288-27.904-195.456 17.984-262.528C415.232 624 428.16 551.296 428.16 551.296s39.552 51.328 23.744 131.648c69.76-77.696 82.944-201.472 72.448-248.896C682.112 544.32 749.568 783.04 658.624 960c483.392-273.472 120.32-682.624 57.024-728.768 21.12 46.08 25.088 124.16-17.472 162.048C626.112 120 447.936 64 447.936 64c21.12 140.928-76.352 295.04-170.304 410.176-3.328-56.256-6.848-94.976-36.416-148.736-6.592 102.016-84.608 185.216-105.728 287.552C106.88 751.488 156.864 852.864 347.008 960z" />
|
|
</svg>
|
|
</span>
|
|
);
|
|
export default Firefilled;
|