Remove Row and run prettier

This commit is contained in:
James Grugett 2022-06-04 21:53:55 -05:00
parent cfd6af7c72
commit a42a0f086c

View File

@ -1,4 +1,3 @@
import { Row } from './layout/row'
import { RadioGroup } from '@headlessui/react'
import clsx from 'clsx'
import React from 'react'
@ -20,8 +19,11 @@ export function ChoicesToggleGroup(props: {
children,
} = props
return (
<RadioGroup value={currentChoice.toString()} onChange={(str) => null}>
<Row className={'items-center flex-wrap gap-3'}>
<RadioGroup
className={clsx(className, 'flex flex-row flex-wrap items-center gap-3')}
value={currentChoice.toString()}
onChange={(str) => null}
>
{Object.keys(choicesMap).map((choiceKey) => (
<RadioGroup.Option
key={choiceKey}
@ -44,7 +46,6 @@ export function ChoicesToggleGroup(props: {
</RadioGroup.Option>
))}
{children}
</Row>
</RadioGroup>
)
}