chore: lint

This commit is contained in:
Aman Harwara
2023-07-12 23:59:58 +05:30
parent 139e8789a4
commit 3f796b48eb
104 changed files with 169 additions and 169 deletions

View File

@@ -22,8 +22,8 @@ const RadioButtonGroup = ({ value, items, onChange, className }: Props) => {
{items.map(({ label, value: itemValue }) => (
<label
className={classNames(
'flex-grow select-none py-1.5 px-3.5 text-center',
'first:rounded-tl first:rounded-bl last:rounded-tr last:rounded-br',
'flex-grow select-none px-3.5 py-1.5 text-center',
'first:rounded-bl first:rounded-tl last:rounded-br last:rounded-tr',
itemValue === value &&
'bg-info-backdrop font-medium text-info ring-1 ring-inset ring-info focus-within:ring-2',
)}