2020-10-25 23:43:15 -03:00
|
|
|
const Info = ({ ...props }) => {
|
|
|
|
return (
|
|
|
|
<svg
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
width="24"
|
|
|
|
height="24"
|
|
|
|
stroke="currentColor"
|
2020-11-06 12:07:57 -03:00
|
|
|
strokeWidth="1.5"
|
|
|
|
strokeLinecap="round"
|
|
|
|
strokeLinejoin="round"
|
2020-10-25 23:43:15 -03:00
|
|
|
fill="none"
|
2020-11-06 12:07:57 -03:00
|
|
|
shapeRendering="geometricPrecision"
|
2020-10-25 23:43:15 -03:00
|
|
|
{...props}
|
|
|
|
>
|
|
|
|
<circle cx="12" cy="12" r="10" fill="transparent" />
|
|
|
|
<path d="M12 8v4" stroke="currentColor" />
|
|
|
|
<path d="M12 16h.01" stroke="currentColor" />
|
|
|
|
</svg>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Info
|