mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
22 lines
542 B
TypeScript
22 lines
542 B
TypeScript
import React from "react";
|
|
|
|
export const InfoIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={16}
|
|
height={16}
|
|
viewBox="0 0 16 16"
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<g fill="currentColor">
|
|
<path d="M8 7a1 1 0 0 1 1 1v3a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1ZM8 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" />
|
|
<path
|
|
fillRule="evenodd"
|
|
d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm0-1A7 7 0 1 0 8 1a7 7 0 0 0 0 14Z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|