atomos_next_genesis 0.0.9 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +0 -3
- package/dist/index.css.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -189,7 +189,7 @@ var Avatar = forwardRef((props, ref) => {
|
|
|
189
189
|
{
|
|
190
190
|
ref,
|
|
191
191
|
className: cn(
|
|
192
|
-
"relative
|
|
192
|
+
"relative",
|
|
193
193
|
rounded && "rounded-full",
|
|
194
194
|
border && "border border-gray-200",
|
|
195
195
|
disabled && "opacity-50 pointer-events-none select-none",
|
|
@@ -205,7 +205,7 @@ var Avatar = forwardRef((props, ref) => {
|
|
|
205
205
|
"div",
|
|
206
206
|
{
|
|
207
207
|
className: cn(
|
|
208
|
-
"relative
|
|
208
|
+
"relative flex items-center justify-center",
|
|
209
209
|
sizes[size],
|
|
210
210
|
className
|
|
211
211
|
),
|