30 lines
556 B
TypeScript
30 lines
556 B
TypeScript
import React from 'react';
|
|
import type { IconProps } from '../types';
|
|
|
|
export const Plus = (props: IconProps) => (
|
|
<svg
|
|
width="21"
|
|
height="21"
|
|
viewBox="0 0 21 21"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...props}
|
|
>
|
|
<g
|
|
fill="none"
|
|
fillRule="evenodd"
|
|
>
|
|
<path d="M0 0h21v21H0z" />
|
|
<g
|
|
stroke="#348CFD"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="1.25"
|
|
>
|
|
<path d="M10.5 5.5v10M15.5 10.5h-10" />
|
|
</g>
|
|
</g>
|
|
</svg>
|
|
);
|
|
|
|
export default Plus;
|