/* eslint-disable max-len */
type SVGButton = () => string
const closeSVG: SVGButton = () => {
// This content comes from the file public/image/bye.svg, after svgo cleaning.
// To get the formated content, you can do:
// xmllint dist/client/images/bye.svg --format
// Then replace the main color by «currentColor»
return ``
}
const openChatSVG: SVGButton = () => {
// This content comes from the file public/image/talking.svg, after svgo cleaning.
// To get the formated content, you can do:
// xmllint dist/client/images/talking.svg --format
// Note: it was highly simplified in this file.
return ``
}
const openBlankChatSVG: SVGButton = () => {
// This content comes from the file public/image/new-window.svg, after svgo cleaning.
// To get the formated content, you can do:
// xmllint dist/client/images/new-window.svg --format
// Then replace the main color by «currentColor»
return ``
}
const shareChatUrlSVG: SVGButton = () => {
// This content comes from the file public/image/url.svg, after svgo cleaning.
// To get the formated content, you can do:
// xmllint dist/client/images/url.svg --format
// Then replace the color by `currentColor`
return `
`
}
export {
closeSVG,
openChatSVG,
openBlankChatSVG,
shareChatUrlSVG,
SVGButton
}