diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-02-25 19:29:44 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-02-25 19:29:44 +0100 |
| commit | 99ae0a9d3a923ca1e998dc9b504dad607fdfd768 (patch) | |
| tree | 70ec0c29d003d462de6926f1faa09354e3ff6d90 /src/components/Form/Toggle/Toggle.tsx | |
| parent | 774d5b4c538d93889bf743b6cd7d01a85f8715e6 (diff) | |
| parent | e26d821f738525477472e631d170d9ed218c1603 (diff) | |
refactor: split form styles and combine components
I think it is better to keep styles close to the
corresponding components. So I splitted the unique
stylesheet.
I also combine select, textarea and input components
into a single one since they share the same logic and
the same styles.
Diffstat (limited to 'src/components/Form/Toggle/Toggle.tsx')
| -rw-r--r-- | src/components/Form/Toggle/Toggle.tsx | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/components/Form/Toggle/Toggle.tsx b/src/components/Form/Toggle/Toggle.tsx deleted file mode 100644 index 36636e4..0000000 --- a/src/components/Form/Toggle/Toggle.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import { FormEvent, ReactElement } from 'react'; -import { Form } from '..'; -import styles from './Toggle.module.scss'; - -const Toggle = ({ - id, - label, - value, - changeHandler, - leftChoice, - rightChoice, - name, -}: { - id: string; - label: string; - value: boolean; - changeHandler: (value: boolean) => void; - leftChoice: ReactElement | string; - rightChoice: ReactElement | string; - name?: string; -}) => { - const onSubmit = (e: FormEvent) => { - e.preventDefault(); - }; - - return ( - <Form modifier="toggle" submitHandler={onSubmit}> - <input - className={styles.checkbox} - type="checkbox" - id={id} - name={name ? name : id} - checked={value} - onChange={() => changeHandler(!value)} - /> - <label htmlFor={id} className={styles.label}> - <span className={styles.title}>{label}</span> - {leftChoice} - <span className={styles.toggle}></span> - {rightChoice} - </label> - </Form> - ); -}; - -export default Toggle; |
