17 lines
710 B
TypeScript
17 lines
710 B
TypeScript
import React from 'react';
|
|
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
|
|
|
|
const IconPaperPlaneFill = (props: SvgIconProps) => (
|
|
<SvgIcon
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
viewBox='0 0 1024 1024'
|
|
{...props}
|
|
>
|
|
<path d='M577.28 767.36l202.08 87.36c12.48 5.28 26.4-2.4 28.32-15.84l106.56-709.92c2.4-16.8-15.84-29.28-30.24-20.64L136.64 548c-13.92 8.16-12.96 28.8 1.44 36L305.6 662.72c7.68 3.36 16.32 2.4 22.56-3.36l507.84-461.76-411.36 513.6c-2.88 3.36-4.32 7.68-4.32 12l-3.84 156.48c-0.48 19.2 23.52 28.32 36 13.44l102.24-120c4.8-6.72 14.4-9.12 22.56-5.76z'></path>
|
|
</SvgIcon>
|
|
);
|
|
|
|
IconPaperPlaneFill.displayName = 'icon-paperPlane-fill';
|
|
|
|
export default IconPaperPlaneFill;
|