20 lines
559 B
TypeScript
20 lines
559 B
TypeScript
import React from 'react';
|
|
import { CustomSVGProps } from '../type';
|
|
import '../index.less';
|
|
const Arrowdown2 = (props: CustomSVGProps) => (
|
|
<span className={'icon'}>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="1em"
|
|
height="1em"
|
|
className="arrow-down2__icon"
|
|
viewBox="0 0 1024 1024"
|
|
{...props}
|
|
>
|
|
<path fill="currentColor"
|
|
fillRule="nonzero"d="m726.4 435.968-189.44 236.8a32 32 0 0 1-49.92 0l-189.44-236.8A32 32 0 0 1 322.56 384h378.88a32 32 0 0 1 24.96 51.968z" />
|
|
</svg>
|
|
</span>
|
|
);
|
|
export default Arrowdown2;
|