7 lines
No EOL
334 B
TypeScript
Executable file
7 lines
No EOL
334 B
TypeScript
Executable file
import React from 'react';
|
|
|
|
export const PlusIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={2} stroke="currentColor" {...props}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M12 4.5v15m7.5-7.5h-15" />
|
|
</svg>
|
|
); |