mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
19 lines
438 B
Vue
19 lines
438 B
Vue
|
<template>
|
||
|
<svg viewBox="0 0 24 24">
|
||
|
<g fill="none">
|
||
|
<path
|
||
|
d="M4 6a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1z"
|
||
|
fill="currentColor"
|
||
|
></path>
|
||
|
<path
|
||
|
d="M4 18a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1z"
|
||
|
fill="currentColor"
|
||
|
></path>
|
||
|
<path
|
||
|
d="M11 11a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-8z"
|
||
|
fill="currentColor"
|
||
|
></path>
|
||
|
</g>
|
||
|
</svg>
|
||
|
</template>
|