18 lines
539 B
TypeScript
18 lines
539 B
TypeScript
import React from 'react';
|
|
import { CustomSVGProps } from '../type';
|
|
import '../index.less';
|
|
|
|
const Arrowup = (props: CustomSVGProps) => (
|
|
<span className={'icon'}>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
fillRule="nonzero"
|
|
d="M3.646 10.354a.5.5 0 0 0 .708 0L8 6.707l3.646 3.647a.5.5 0 0 0 .638.057l.07-.057a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708Z"
|
|
/>
|
|
</svg>
|
|
</span>
|
|
);
|
|
|
|
export default Arrowup;
|