mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2026-01-30 09:48:12 +01:00
30 lines
581 B
TypeScript
30 lines
581 B
TypeScript
import type {FC, InputHTMLAttributes} from 'react';
|
|
import styles from './Checkbox.module.scss';
|
|
|
|
interface CheckboxProps extends Omit<
|
|
InputHTMLAttributes<HTMLInputElement>,
|
|
'type'
|
|
> {
|
|
label: string;
|
|
}
|
|
|
|
export const Checkbox: FC<CheckboxProps> = ({
|
|
label,
|
|
id,
|
|
checked,
|
|
onChange,
|
|
...props
|
|
}) => (
|
|
<label htmlFor={id} className={styles.wrapper}>
|
|
<input
|
|
type="checkbox"
|
|
id={id}
|
|
className={styles.checkbox}
|
|
checked={checked}
|
|
onChange={onChange}
|
|
{...props}
|
|
/>
|
|
<span className={styles.text}>{label}</span>
|
|
</label>
|
|
);
|