synapsecns/sanguine

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

Summary

Maintainability
A
3 hrs
Test Coverage
export const CloseIcon = ({ className }) => {
  return (
    <svg
      className={`h-6 w-6 ${className}`}
      fill="none"
      viewBox="0 0 24 24"
      stroke="currentColor"
      aria-hidden="true"
    >
      <path
        strokeLinecap="round"
        strokeLinejoin="round"
        strokeWidth={2}
        d="M6 18L18 6M6 6l12 12"
      />
    </svg>
  )
}