import React from 'react';
export default function AlphaXIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-alpha-x ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M9 7l2 5-2 5h2l1-2.5 1 2.5h2l-2-5 2-5h-2l-1 2.5L11 7H9z" />
</svg>
);
}