import React from 'react';
export default function AlphaWIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-alpha-w ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M9 17a2 2 0 0 1-2-2V7h2v8h2V8h2v7h2V7h2v8a2 2 0 0 1-2 2H9z" />
</svg>
);
}