2024-06-16 17:48:02 +00:00
|
|
|
// SPDX-FileCopyrightText: 2024 Mehdi Benadel <https://mehdibenadel.com>
|
|
|
|
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
// This content comes from the file assets/images/plus-square.svg, from the Feather icons set https://feathericons.com/
|
2024-09-09 16:47:21 +00:00
|
|
|
export const AddSVG =
|
2024-06-16 17:48:02 +00:00
|
|
|
`<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
2024-08-29 10:20:36 +00:00
|
|
|
aria-hidden="true"
|
2024-06-16 17:48:02 +00:00
|
|
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
|
|
stroke-linejoin="round" class="feather feather-plus-square">
|
|
|
|
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
|
|
|
|
<line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line>
|
|
|
|
</svg>`
|
|
|
|
|
|
|
|
// This content comes from the file assets/images/x-square.svg, from the Feather icons set https://feathericons.com/
|
2024-09-09 16:47:21 +00:00
|
|
|
export const RemoveSVG =
|
2024-06-16 17:48:02 +00:00
|
|
|
`<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
2024-08-29 10:20:36 +00:00
|
|
|
aria-hidden="true"
|
2024-06-16 17:48:02 +00:00
|
|
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
|
|
stroke-linejoin="round" class="feather feather-x-square">
|
|
|
|
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
|
|
|
|
<line x1="9" y1="9" x2="15" y2="15"></line><line x1="15" y1="9" x2="9" y2="15"></line>
|
|
|
|
</svg>`
|