import React from 'react'; import PropTypes from 'prop-types'; import Box from '../../../components/ui/box'; import Typography from '../../../components/ui/typography'; import ToggleButton from '../../../components/ui/toggle-button'; import { JUSTIFY_CONTENT, TYPOGRAPHY, FONT_WEIGHT, } from '../../../helpers/constants/design-system'; export const Setting = ({ value, setValue, title, description }) => { return (
{title} {description}
setValue(!val)} />
); }; Setting.propTypes = { value: PropTypes.bool, setValue: PropTypes.func, title: PropTypes.string, description: PropTypes.string, };