diff --git a/apps/web/components/Form.tsx b/apps/web/components/Form.tsx
index dba97e8..f797f72 100644
--- a/apps/web/components/Form.tsx
+++ b/apps/web/components/Form.tsx
@@ -1,6 +1,6 @@
import type { ResponseGetData, ResponseMetaData } from '@/api/ius/types';
import { mapFieldTypeElement } from '@/config/elements';
-import { Background, Button, ElementContainer } from 'ui';
+import { Background, Button, Divider, ElementContainer } from 'ui';
type Props = {
readonly data: ResponseGetData;
@@ -35,7 +35,8 @@ export function Form({ data, metaData }: Props) {
);
})}
-
+
+
diff --git a/packages/ui/background.tsx b/packages/ui/background.tsx
index 86d5825..09c79b9 100644
--- a/packages/ui/background.tsx
+++ b/packages/ui/background.tsx
@@ -2,7 +2,7 @@ import type { PropsWithChildren } from 'react';
export function Background({ children }: PropsWithChildren) {
return (
-
+
{children}
);
diff --git a/packages/ui/divider.tsx b/packages/ui/divider.tsx
new file mode 100644
index 0000000..75d4444
--- /dev/null
+++ b/packages/ui/divider.tsx
@@ -0,0 +1,3 @@
+export function Divider() {
+ return
;
+}
diff --git a/packages/ui/index.tsx b/packages/ui/index.tsx
index 48f1192..2743c41 100644
--- a/packages/ui/index.tsx
+++ b/packages/ui/index.tsx
@@ -3,5 +3,6 @@ export * from './button';
export * from './checkbox';
export * from './container';
export * from './content';
+export * from './divider';
export * from './header';
export * from './input';