18 lines
909 B
TypeScript
18 lines
909 B
TypeScript
import React from 'react';
|
|
import { CustomSVGProps } from '../type';
|
|
import '../index.less';
|
|
|
|
const Add = (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="M8 1c1.933 0 3.683.784 4.95 2.05A6.978 6.978 0 0 1 15 8a6.978 6.978 0 0 1-2.05 4.95A6.978 6.978 0 0 1 8 15a6.978 6.978 0 0 1-4.95-2.05A6.978 6.978 0 0 1 1 8c0-1.933.784-3.683 2.05-4.95A6.978 6.978 0 0 1 8 1Zm0 1a5.977 5.977 0 0 0-4.243 1.757A5.977 5.977 0 0 0 2 8c0 1.614.639 3.124 1.757 4.243A5.977 5.977 0 0 0 8 14a5.977 5.977 0 0 0 4.243-1.757A5.977 5.977 0 0 0 14 8a5.977 5.977 0 0 0-1.757-4.243A5.977 5.977 0 0 0 8 2Zm0 2a.5.5 0 0 1 .5.5v3h3a.5.5 0 1 1 0 1h-3v3a.5.5 0 1 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4Z"
|
|
/>
|
|
</svg>
|
|
</span>
|
|
);
|
|
|
|
export default Add;
|