diff --git a/apps/scandic-web/components/HotelReservation/EnterDetails/Details/SpecialRequests/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/SpecialRequests/index.tsx
index b70d6e0d6..e542a0c41 100644
--- a/apps/scandic-web/components/HotelReservation/EnterDetails/Details/SpecialRequests/index.tsx
+++ b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/SpecialRequests/index.tsx
@@ -1,9 +1,8 @@
import { useIntl } from "react-intl"
+import TextArea from "@scandic-hotels/design-system/Form/TextArea"
import { Typography } from "@scandic-hotels/design-system/Typography"
-import TextArea from "@/components/TempDesignSystem/Form/TextArea"
-
import styles from "./specialRequests.module.css"
import type { RegisterOptions } from "react-hook-form"
diff --git a/apps/scandic-web/components/TempDesignSystem/Form/TextArea/index.tsx b/packages/design-system/lib/components/Form/TextArea/index.tsx
similarity index 63%
rename from apps/scandic-web/components/TempDesignSystem/Form/TextArea/index.tsx
rename to packages/design-system/lib/components/Form/TextArea/index.tsx
index 79c12e912..7959fab5e 100644
--- a/apps/scandic-web/components/TempDesignSystem/Form/TextArea/index.tsx
+++ b/packages/design-system/lib/components/Form/TextArea/index.tsx
@@ -1,30 +1,29 @@
-"use client"
+'use client'
import {
Label as AriaLabel,
Text,
TextArea as AriaTextArea,
TextField,
-} from "react-aria-components"
-import { Controller, useFormContext } from "react-hook-form"
+} from 'react-aria-components'
+import { Controller, useFormContext } from 'react-hook-form'
-import Body from "@scandic-hotels/design-system/Body"
-import Caption from "@scandic-hotels/design-system/Caption"
-import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon"
-import { Label } from "@scandic-hotels/design-system/Label"
+import { MaterialIcon } from '../../Icons/MaterialIcon'
+import { Label } from '../../Label'
+import { Typography } from '../../Typography'
-import styles from "./textarea.module.css"
+import styles from './textarea.module.css'
-import type { TextAreaProps } from "./input"
+import type { TextAreaProps } from './input'
export default function TextArea({
- "aria-label": ariaLabel,
- className = "",
+ 'aria-label': ariaLabel,
+ className = '',
disabled = false,
- helpText = "",
+ helpText = '',
label,
name,
- placeholder = "",
+ placeholder = '',
readOnly = false,
registerOptions = {},
}: TextAreaProps) {
@@ -48,7 +47,7 @@ export default function TextArea({
value={field.value}
>
+