sanger/limber

View on GitHub
app/frontend/javascript/icons/TubeIcon.vue

Summary

Maintainability
Test Coverage
<template>
  <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368">
    <path
      d="M480-80q-83 0-141.5-58.5T280-280v-360q-33 0-56.5-23.5T200-720v-80q0-33 23.5-56.5T280-880h400q33 0 56.5 23.5T760-800v80q0 33-23.5 56.5T680-640v360q0 83-58.5 141.5T480-80ZM280-720h400v-80H280v80Zm200 560q50 0 85-35t35-85H480v-80h120v-80H480v-80h120v-120H360v360q0 50 35 85t85 35ZM280-720v-80 80Z"
    />
  </svg>
</template>

<script>
export default {
  name: 'ErrorIcon',
  props: {
    color: {
      type: String,
      default: 'currentColor',
    },
  },
}
</script>