Files
openpanel/packages/devtools-ui/src/components/icons/info.tsx
Stefan Pejcic 09f9f9502d packages
2024-11-07 19:03:37 +01:00

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>
);