23 lines
392 B
TypeScript
23 lines
392 B
TypeScript
import { SVGProps } from 'react';
|
|
|
|
const AddIcon = (props: SVGProps<SVGSVGElement>) => {
|
|
return (
|
|
<svg
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
viewBox='0 0 512 512'
|
|
{...props}
|
|
>
|
|
<path
|
|
fill='none'
|
|
stroke='currentColor'
|
|
strokeLinecap='round'
|
|
strokeLinejoin='round'
|
|
strokeWidth='32'
|
|
d='M256 112v288M400 256H112'
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default AddIcon;
|