react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 466 B
JavaScript
import React from 'react';
export default function AlphaICircleOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-alpha-i-circle-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M14 7v2h-1v6h1v2h-4v-2h1V9h-1V7h4m-2-5a10 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 2m0 2a8 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-8z" />
</svg>
);
}