import React from "react";

const TextIcon = () => {
	return (
		<svg
			width="20"
			height="20"
			viewBox="0 0 20 20"
			fill="none"
			xmlns="http://www.w3.org/2000/svg"
		>
			<path
				fillRule="evenodd"
				clipRule="evenodd"
				d="M8.5 0L2 16H5L7 11H13L15 16H18L11.5 0H8.5ZM12.2 9L10 3.5L7.8 9H12.2Z"
				fill="#002838"
			/>
			<path d="M0 18V20H20V18H0Z" fill="#002838" />
		</svg>
	);
};

export default TextIcon;
