Skip to content
Snippets Groups Projects
SolidIcon.vue 292 B
Newer Older
<script setup lang="ts"></script>

<template>
  <svg
    fill="#fff"
    width="20px"
    height="20px"
    viewBox="0 0 24 24"
    xmlns="http://www.w3.org/2000/svg"
  >
    <path d="M23 13H1v-2h22z" />
    <path fill="none" d="M0 0h24v24H0z" />
  </svg>
</template>

<style scoped></style>