radio and option drawer data
<Box css={[margin(2,'bottom')]}>
{/* map */}
<Box border={1}
color="gray-600"
padding={4}
css={[flex('row')]}>
<Radio
value="radhe"
checked={true}
color="primary"
// label="Are we cool now?"
onChange={m => console.log(m)}
/>
<Box css={[flex('column')]}>
<Text variant="header-4" color="gray-600">
{/* {member.name} */}
XYZ
</Text>
<Text variant="body-1" color="gray-300">
Main {/* {member.relation} */}
</Text>
</Box>
</Box>
<Button
type="submit"
css={[isPhone ?
css([{width:'100%'}
]) : {}]}
>
{isPhone ? "Confirm" : "Submit"}
</Button>
</Box>
Comments
Post a Comment