1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/onboarding-flow/privacy-settings/setting.js
2023-02-02 20:15:26 +00:00

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,
};