aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/forms/switch
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-10-31 16:00:45 +0100
committerArmand Philippot <git@armandphilippot.com>2023-11-11 18:15:27 +0100
commit3ff4c37a7a2c40340c17f9e6c1754444bce0f839 (patch)
tree551ca3df148d46af2bd27995fa98c01378030644 /src/components/molecules/forms/switch
parent0e52a59917406ad03c174e030c6c1c92ab23449d (diff)
refactor(components): rewrite Modal component
* add an optional close button * add an icon prop
Diffstat (limited to 'src/components/molecules/forms/switch')
-rw-r--r--src/components/molecules/forms/switch/switch.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/molecules/forms/switch/switch.tsx b/src/components/molecules/forms/switch/switch.tsx
index ad3e514..c6c1c69 100644
--- a/src/components/molecules/forms/switch/switch.tsx
+++ b/src/components/molecules/forms/switch/switch.tsx
@@ -14,7 +14,7 @@ import {
Label,
Radio,
} from '../../../atoms';
-import type { TooltipProps } from '../../tooltip';
+import type { TooltipProps } from '../../modals';
import styles from './switch.module.scss';
type SwitchItemProps = Omit<LabelProps, 'children' | 'htmlFor' | 'isRequired'> &