diff --git a/src/components/layout/Dim.tsx b/src/components/layout/Dim.tsx
new file mode 100644
index 0000000..5f8f494
--- /dev/null
+++ b/src/components/layout/Dim.tsx
@@ -0,0 +1,12 @@
+//
+//
+// 해당 컴포넌트를 사용하려면 부모 요소에 relative를 주어야 함
+
+type DimProps = {
+ width: number | string;
+ height: number | string;
+};
+
+export default function Dim({ width, height }: DimProps) {
+ return
;
+}
diff --git a/src/components/layout/Divider.tsx b/src/components/layout/Divider.tsx
new file mode 100644
index 0000000..c6fa190
--- /dev/null
+++ b/src/components/layout/Divider.tsx
@@ -0,0 +1,14 @@
+//
+//
+
+type DividerProps = {
+ width: number | string;
+};
+
+export default function Divider({ width }: DividerProps) {
+ return (
+
+ );
+}
diff --git a/src/components/layout/MaskGradient.tsx b/src/components/layout/MaskGradient.tsx
new file mode 100644
index 0000000..eab5a7b
--- /dev/null
+++ b/src/components/layout/MaskGradient.tsx
@@ -0,0 +1,14 @@
+//
+//
+// 해당 컴포넌트를 사용하려면 부모 요소에 relative를 주어야 함
+
+type MaskGradientProps = {
+ width: number | string;
+ height: number | string;
+};
+
+export default function MaskGradient({ width, height }: MaskGradientProps) {
+ return (
+
+ );
+}