20 lines
688 B
TypeScript
20 lines
688 B
TypeScript
import React from 'react';
|
|
import { CustomSVGProps } from '../type';
|
|
import '../index.less';
|
|
const Distance = (props: CustomSVGProps) => (
|
|
<span className={'icon'}>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="1em"
|
|
height="1em"
|
|
className="distance__icon"
|
|
viewBox="0 0 1024 1024"
|
|
{...props}
|
|
>
|
|
<path fill="currentColor"
|
|
fillRule="nonzero"d="M928 64a32 32 0 0 1 32 32v128a32 32 0 0 1-32 32H813.184L256 813.184V928a32 32 0 0 1-26.24 31.488L224 960H96a32 32 0 0 1-32-32V800a32 32 0 0 1 32-32h114.688L768 210.688V96a32 32 0 0 1 26.24-31.488L800 64h128zM192 832h-64v64h64v-64zm704-704h-64v64h64v-64z" />
|
|
</svg>
|
|
</span>
|
|
);
|
|
export default Distance;
|