mirror of
https://github.com/iconify/iconify.git
synced 2024-11-08 22:30:59 +00:00
7 lines
373 B
TypeScript
7 lines
373 B
TypeScript
// Default data for empty icon
|
|
export const defaultIconResult =
|
|
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" viewBox="0 0 16 16"></svg>';
|
|
|
|
// Empty string: could be '<!---->' (jsdom) or '' (happy-dom), depending on testing envronment
|
|
export const emptyString = ''; //'<!---->';
|