import React from 'react';

const StarIcon = ({ width = '20', height = '20', filled = false, className = '', fillColor = '#e3a008' }) => {

	return (
		<svg
			width={width}
			height={height}
			viewBox="0 0 24 24"
			className={className}
			aria-hidden="true"
			style={{ overflow: 'visible' }}
		>
			<path
				d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01z"
				fill={filled ? fillColor : 'white'}

				stroke={fillColor}
				strokeWidth={filled ? '0' : '1.5'}
				strokeLinejoin="round"
			/>
		</svg>
	);
};

export default StarIcon;
