react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 499 B
JavaScript
import React from 'react';
export default function AlphaACircleOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-alpha-a-circle-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M11 7h2a2 2 0 0 1 2 2v8h-2v-4h-2v4H9V9a2 2 0 0 1 2-2m0 2v2h2V9h-2m1 11a8 8 0 0 0 8-8 8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8m0-18a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2z" />
</svg>
);
}