18 lines
665 B
TypeScript
18 lines
665 B
TypeScript
import React from 'react';
|
|
import { CustomSVGProps } from '../type';
|
|
import '../index.less';
|
|
|
|
const Retrieval = (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="M7.5 1a6.5 6.5 0 0 1 4.936 10.729l2.418 2.417a.5.5 0 0 1-.708.708l-2.417-2.418A6.5 6.5 0 1 1 7.5 1Zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm0 1c1.598 0 3.051.84 3.86 2.184a.5.5 0 0 1-.858.516 3.497 3.497 0 0 0-4.11-1.521.5.5 0 1 1-.315-.95C6.532 3.08 7.01 3 7.5 3Z"
|
|
/>
|
|
</svg>
|
|
</span>
|
|
);
|
|
|
|
export default Retrieval;
|