Run prettier fix on all files (#581)

This commit is contained in:
Gonzalo Pozzo
2021-11-25 09:17:13 -03:00
committed by GitHub
parent 96e990268d
commit 73470c9232
74 changed files with 904 additions and 845 deletions

View File

@@ -44,7 +44,7 @@ const Swatch: React.FC<Omit<ButtonProps, 'variant'> & SwatchProps> = React.memo(
<Button
role="option"
aria-selected={active}
aria-label={(variant && label) ? `${variant} ${label}` : "Variant Swatch"}
aria-label={variant && label ? `${variant} ${label}` : 'Variant Swatch'}
className={swatchClassName}
{...(label && color && { title: label })}
style={color ? { backgroundColor: color } : {}}