import React from 'react' import { SwitchWithLabel, SwitchWithLabelProps } from './inputs/SwitchWithLabel' import { Stack } from '@chakra-ui/react' type Props = SwitchWithLabelProps export const SwitchWithRelatedSettings = ({ children, ...props }: Props) => ( {props.initialValue && children} )