Remove width/height in svg
This commit is contained in:
parent
a352f94c2c
commit
7d95c50c7a
1 changed files with 3 additions and 2 deletions
|
@ -109,6 +109,7 @@ export const ICONS = {
|
||||||
media: () => import('@iconify-icons/mingcute/photo-album-line'),
|
media: () => import('@iconify-icons/mingcute/photo-album-line'),
|
||||||
speak: () => import('@iconify-icons/mingcute/radar-line'),
|
speak: () => import('@iconify-icons/mingcute/radar-line'),
|
||||||
building: () => import('@iconify-icons/mingcute/building-5-line'),
|
building: () => import('@iconify-icons/mingcute/building-5-line'),
|
||||||
|
history: () => import('@iconify-icons/mingcute/history-2-line'),
|
||||||
};
|
};
|
||||||
|
|
||||||
const ICONDATA = {};
|
const ICONDATA = {};
|
||||||
|
@ -118,8 +119,8 @@ const SVGICon = moize(
|
||||||
function ({ size, width, height, body, rotate, flip }) {
|
function ({ size, width, height, body, rotate, flip }) {
|
||||||
return (
|
return (
|
||||||
<svg
|
<svg
|
||||||
width={size}
|
// width={size}
|
||||||
height={size}
|
// height={size}
|
||||||
viewBox={`0 0 ${width} ${height}`}
|
viewBox={`0 0 ${width} ${height}`}
|
||||||
dangerouslySetInnerHTML={{ __html: body }}
|
dangerouslySetInnerHTML={{ __html: body }}
|
||||||
style={{
|
style={{
|
||||||
|
|
Loading…
Add table
Reference in a new issue