diff --git a/next-docs/public/examples/avatar/__tests__/__snapshots__/index.test.tsx.snap b/next-docs/public/examples/avatar/__tests__/__snapshots__/index.test.tsx.snap index 89e77efd1f..a595b9355b 100644 --- a/next-docs/public/examples/avatar/__tests__/__snapshots__/index.test.tsx.snap +++ b/next-docs/public/examples/avatar/__tests__/__snapshots__/index.test.tsx.snap @@ -10,7 +10,6 @@ Object { >
md @@ -65,7 +63,6 @@ Object { >
md @@ -177,7 +173,6 @@ Object { >
xs @@ -778,7 +755,6 @@ Object {
sm @@ -786,7 +762,6 @@ Object {
md @@ -794,7 +769,6 @@ Object {
lg @@ -802,7 +776,6 @@ Object {
xl @@ -810,7 +783,6 @@ Object {
2xl @@ -875,7 +847,6 @@ Object { >
xs @@ -1031,7 +996,6 @@ Object {
sm @@ -1039,7 +1003,6 @@ Object {
md @@ -1047,7 +1010,6 @@ Object {
lg @@ -1055,7 +1017,6 @@ Object {
xl @@ -1063,7 +1024,6 @@ Object {
2xl @@ -1182,7 +1142,6 @@ Object { >
md @@ -1515,7 +1465,6 @@ Object { >
md @@ -1615,7 +1563,6 @@ Object {
md @@ -1666,7 +1612,6 @@ Object { "container":
md @@ -1774,7 +1718,6 @@ Object {
xs @@ -2359,7 +2284,6 @@ Object {
sm @@ -2367,7 +2291,6 @@ Object {
md @@ -2375,7 +2298,6 @@ Object {
lg @@ -2383,7 +2305,6 @@ Object {
xl @@ -2391,7 +2312,6 @@ Object {
2xl @@ -2452,7 +2372,6 @@ Object { >
xs @@ -2608,7 +2521,6 @@ Object {
sm @@ -2616,7 +2528,6 @@ Object {
md @@ -2624,7 +2535,6 @@ Object {
lg @@ -2632,7 +2542,6 @@ Object {
xl @@ -2640,7 +2549,6 @@ Object {
2xl @@ -2755,7 +2663,6 @@ Object {
md @@ -3076,7 +2974,6 @@ Object { "container":
md diff --git a/workspaces/core/src/avatar/styles/Wrapper.tsx b/workspaces/core/src/avatar/styles/Wrapper.tsx index 96aee11800..59be658562 100644 --- a/workspaces/core/src/avatar/styles/Wrapper.tsx +++ b/workspaces/core/src/avatar/styles/Wrapper.tsx @@ -17,13 +17,13 @@ const Wrapper = ({ className={mergeClassnames( 'relative overflow-hidden uppercase font-medium flex items-center justify-center bg-cover', 'text-bulma bg-goku', - color && color, - bgColor && bgColor, + color, + bgColor, getWrapperSize(size), getBorderRadius(size, isRounded), className )} - style={{ backgroundImage: `url('${imageUrl}')` }} + style={{ backgroundImage: imageUrl && `url('${imageUrl}')` }} > {children}