blob: b7981b3e9eed3bcac6c02f48931de8eeb00fe889 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import { Text, Box, Collapse, Switch } from '@chakra-ui/react'
import React from 'react'
import { InfoTooltip } from './InfoTooltip'
export interface EnableSectionProps {
label: string
value: boolean | number
onChange: () => void
infoText?: string
children: React.ReactNode
}
export const EnableSection = (props: EnableSectionProps) => {
const { value, onChange, label, infoText, children } = props
return (
<Box paddingTop={2} key={label}>
<Box display="flex" justifyContent="space-between" paddingBottom={2}>
<Box display="flex" alignItems="center">
<Text>{label}</Text>
{infoText && <InfoTooltip infoText={infoText} />}
</Box>
<Switch isChecked={!!value} onChange={onChange} />
</Box>
<Collapse in={!!value} animateOpacity>
<Box paddingLeft={4} paddingTop={2} paddingBottom={2}>
{children}
</Box>
</Collapse>
</Box>
)
}
|