11 lines
464 B
Plaintext
11 lines
464 B
Plaintext
---
|
|
// Ce composant accepte les props SVG standards comme `class`.
|
|
const { ...props } = Astro.props;
|
|
---
|
|
<svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<path d="M8 21h12a2 2 0 0 0 2-2v-2H10v2a2 2 0 0 1-2 2Z"></path>
|
|
<path d="M4 21a2 2 0 0 1-2-2v-2h10v4H4Z"></path>
|
|
<path d="M4 5v12h16V5a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Z"></path>
|
|
</svg>
|
|
|