synapsecns/sanguine

View on GitHub
packages/synapse-interface/components/icons/HomeIcon.tsx

Summary

Maintainability
A
0 mins
Test Coverage
export default function HomeSvg({ ...props }) {
  return (
    <svg
      width="36"
      height="28"
      viewBox="0 -1 24 28"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
    >
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M20 10H4V21.5C4 22.0523 4.44772 22.5 5 22.5H9V17.5C9 16.9477 9.44772 16.5 10 16.5H14C14.5523 16.5 15 16.9477 15 17.5V22.5H19C19.5523 22.5 20 22.0523 20 21.5V10Z"
        fill="#D9D9D9"
      />
      <path
        d="M11.3598 3.03349C11.7307 2.72445 12.2693 2.72445 12.6402 3.03349L21.8781 10.7318C22.5967 11.3305 22.1732 12.5 21.238 12.5H2.76205C1.82675 12.5 1.40335 11.3305 2.12187 10.7318L11.3598 3.03349Z"
        fill="#D9D9D9"
      />
    </svg>
  )
}