20 lines
551 B
TypeScript
20 lines
551 B
TypeScript
import React from 'react';
|
|
import { CustomSVGProps } from '../type';
|
|
import '../index.less';
|
|
const Add2 = (props: CustomSVGProps) => (
|
|
<span className={'icon'}>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="1em"
|
|
height="1em"
|
|
className="add2__icon"
|
|
viewBox="0 0 1024 1024"
|
|
{...props}
|
|
>
|
|
<path fill="currentColor"
|
|
fillRule="nonzero"d="M512 128a32 32 0 0 1 32 32v320h320a32 32 0 1 1 0 64H544v320a32 32 0 1 1-64 0V544H160a32 32 0 0 1 0-64h320V160a32 32 0 0 1 32-32z" />
|
|
</svg>
|
|
</span>
|
|
);
|
|
export default Add2;
|