mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
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 {
|
|
JustifyContent,
|
|
TypographyVariant,
|
|
FONT_WEIGHT,
|
|
} from '../../../helpers/constants/design-system';
|
|
|
|
export const Setting = ({
|
|
value,
|
|
setValue,
|
|
title,
|
|
description,
|
|
showToggle = true,
|
|
}) => {
|
|
return (
|
|
<Box justifyContent={JustifyContent.center} margin={3}>
|
|
<div className="privacy-settings__setting">
|
|
<Typography
|
|
variant={TypographyVariant.H5}
|
|
fontWeight={FONT_WEIGHT.BOLD}
|
|
>
|
|
{title}
|
|
</Typography>
|
|
<Typography variant={TypographyVariant.H6}>{description}</Typography>
|
|
</div>
|
|
{showToggle ? (
|
|
<div className="privacy-settings__setting__toggle">
|
|
<ToggleButton value={value} onToggle={(val) => setValue(!val)} />
|
|
</div>
|
|
) : null}
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
Setting.propTypes = {
|
|
value: PropTypes.bool,
|
|
setValue: PropTypes.func,
|
|
title: PropTypes.string,
|
|
description: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
|
|
showToggle: PropTypes.bool,
|
|
};
|