Commit 1c2ed1d9 authored by Brendan Wong's avatar Brendan Wong Committed by GitHub

fix: add margins for empty pool icon (#6884)

* fix: increase height of svg

* update test
parent 0e956fb7
...@@ -189,7 +189,7 @@ exports[`EmptyWalletContent.tsx matches base snapshot 1`] = ` ...@@ -189,7 +189,7 @@ exports[`EmptyWalletContent.tsx matches base snapshot 1`] = `
> >
<svg <svg
fill="none" fill="none"
height="85" height="97"
viewBox="0 0 81 85" viewBox="0 0 81 85"
width="81" width="81"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
......
...@@ -59,7 +59,7 @@ export const EmptyNftsIcon = (props: SVGProps) => { ...@@ -59,7 +59,7 @@ export const EmptyNftsIcon = (props: SVGProps) => {
export const EmptyPoolsIcon = (props: SVGProps) => { export const EmptyPoolsIcon = (props: SVGProps) => {
const { primary, secondary } = useEmptyStateIconColors() const { primary, secondary } = useEmptyStateIconColors()
return ( return (
<svg {...props} width="81" height="85" viewBox="0 0 81 85" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg {...props} width="81" height="97" viewBox="0 0 81 85" fill="none" xmlns="http://www.w3.org/2000/svg">
<path <path
fillRule="evenodd" fillRule="evenodd"
clipRule="evenodd" clipRule="evenodd"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment