synapsecns/sanguine

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

Summary

Maintainability
A
3 hrs
Test Coverage
export const PlusIcon = ({ className }) => {
  return (
    <svg
      className={`w-4 mr-1 ${className}`}
      fill="none"
      viewBox="0 0 24 24"
      stroke="currentColor"
    >
      <path
        strokeLinecap="round"
        strokeLinejoin="round"
        strokeWidth={2}
        d="M12 6v6m0 0v6m0-6h6m-6 0H6"
      />
    </svg>
  )
}