synapsecns/sanguine

View on GitHub
packages/explorer-ui/components/icons/InfoIcon.tsx

Summary

Maintainability
A
0 mins
Test Coverage
export const InfoIcon = () => {
  return (
    <svg
      className="w-4 text-default hover:text-gray-500"
      viewBox="0 0 20 20"
      fill="currentColor"
    >
      <path
        fillRule="evenodd"
        d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z"
        clipRule="evenodd"
      />
    </svg>
  )
}