2022-02-23 14:03:14 +00:00
|
|
|
export const downloadImg = async (image: string) => {
|
|
|
|
try {
|
2022-02-23 14:49:00 +00:00
|
|
|
const a = document.createElement('a')
|
|
|
|
a.download = `${image.split('/').pop()}.png`
|
|
|
|
a.href = image
|
|
|
|
a.click()
|
2022-02-23 14:03:14 +00:00
|
|
|
} catch {
|
2022-02-23 14:49:00 +00:00
|
|
|
return
|
2022-02-23 14:03:14 +00:00
|
|
|
}
|
2022-02-23 14:49:00 +00:00
|
|
|
}
|