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/Settings/AckeeSelect/AckeeSelect.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/Settings/AckeeSelect/AckeeSelect.tsx')
| -rw-r--r-- | src/components/Settings/AckeeSelect/AckeeSelect.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/Settings/AckeeSelect/AckeeSelect.tsx b/src/components/Settings/AckeeSelect/AckeeSelect.tsx index 43110c4..e1a8ed8 100644 --- a/src/components/Settings/AckeeSelect/AckeeSelect.tsx +++ b/src/components/Settings/AckeeSelect/AckeeSelect.tsx @@ -1,4 +1,4 @@ -import { Label, Select } from '@components/Form'; +import { Field, Label } from '@components/FormElements'; import Tooltip from '@components/Tooltip/Tooltip'; import { LocalStorage } from '@services/local-storage'; import { useAckeeTracker } from '@utils/providers/ackee'; @@ -67,9 +67,10 @@ const AckeeSelect = () => { return ( <div className={styles.wrapper}> - <Select + <Field id="ackee-settings" name="ackee-settings" + kind="select" label={label} options={options} value={value} |
