react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 454 B
JavaScript
import React from 'react';
export default function InformationOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-information-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M11 9h2V7h-2m1 13c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m-1 15h2v-6h-2v6z" />
</svg>
);
}