File size: 430 Bytes
420b22a
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react';

function PlusIcon({styling, text}) {
  return (
    <div className={styling}>
      <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth="1.5" stroke="currentColor" className="w-6 h-6">
        <path strokeLinecap="round" strokeLinejoin="round" d="M12 4.5v15m7.5-7.5h-15" />
      </svg> 
      <p className='ml-2'>{text}</p>
    </div>
  );
}
  
export default PlusIcon;