{ return item.cardData.verticalAlign ?? 'center'; }, (value) => { if (!value) return; item.cardData.verticalAlign = value; } } >
{ return item.cardData.textAlign ?? 'left'; }, (value) => { if (!value) return; item.cardData.textAlign = value; } } >
{ item.cardData.textSize = Math.max((item.cardData.textSize ?? 1) - 1, 0); }} disabled={(item.cardData.textSize ?? 1) < 1} >
{ item.cardData.textSize = Math.min( (item.cardData.textSize ?? 1) + 1, textSizeClasses.length - 1 ); }} disabled={(item.cardData.textSize ?? 1) >= textSizeClasses.length - 1} >