packages/explorer-ui/components/icons/ChartBarIcon.tsx
export const ChartBarIcon = ({ 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="M8 13v-1m4 1v-3m4 3V8M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
/>
</svg>
)
}