diff options
Diffstat (limited to 'src/components/atoms/modal/modal.tsx')
| -rw-r--r-- | src/components/atoms/modal/modal.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/atoms/modal/modal.tsx b/src/components/atoms/modal/modal.tsx index 78b4f6e..6f5506f 100644 --- a/src/components/atoms/modal/modal.tsx +++ b/src/components/atoms/modal/modal.tsx @@ -1,11 +1,11 @@ import { - ForwardRefRenderFunction, - HTMLAttributes, - ReactElement, - ReactNode, + type ForwardRefRenderFunction, + type HTMLAttributes, + type ReactElement, + type ReactNode, forwardRef, } from 'react'; -import { HeadingProps } from '../headings'; +import type { HeadingProps } from '../heading'; import styles from './modal.module.scss'; export type ModalProps = HTMLAttributes<HTMLDivElement> & { |
