packages/explorer-ui/components/icons/CloseIcon.tsx
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>
)
}