// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React, { useMemo } from 'react'; import { v4 as uuid } from 'uuid'; import { getClassNamesFor } from '../util/getClassNamesFor'; export type PropsType = { checked?: boolean; description?: string; disabled?: boolean; isRadio?: boolean; label: string; moduleClassName?: string; name: string; onChange: (value: boolean) => unknown; }; export const Checkbox = ({ checked, description, disabled, isRadio, label, moduleClassName, name, onChange, }: PropsType): JSX.Element => { const getClassName = getClassNamesFor('Checkbox', moduleClassName); const id = useMemo(() => `${name}::${uuid()}`, [name]); return (
onChange(ev.target.checked)} type={isRadio ? 'radio' : 'checkbox'} />
{description}
); };