diff --git a/src/components/Divider/MucDivider.stories.ts b/src/components/Divider/MucDivider.stories.ts
new file mode 100644
index 00000000..0bc212d9
--- /dev/null
+++ b/src/components/Divider/MucDivider.stories.ts
@@ -0,0 +1,19 @@
+import MucDivider from "./MucDivider.vue";
+
+export default {
+ component: MucDivider,
+ title: "MucDivider",
+ tags: ["autodocs"],
+ parameters: {
+ docs: {
+ description: {
+ component: `The \`muc-divider\` is a trivial divider.
+
+[🔗 Patternlab-Docs](https://patternlab.muenchen.space/?p=viewall-components-all)
+`,
+ },
+ },
+ },
+};
+
+export const Default = {};
diff --git a/src/components/Divider/MucDivider.vue b/src/components/Divider/MucDivider.vue
new file mode 100644
index 00000000..f0481157
--- /dev/null
+++ b/src/components/Divider/MucDivider.vue
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/src/components/Divider/index.ts b/src/components/Divider/index.ts
new file mode 100644
index 00000000..a052bce0
--- /dev/null
+++ b/src/components/Divider/index.ts
@@ -0,0 +1,3 @@
+import MucDivider from "./MucDivider.vue";
+
+export { MucDivider };
diff --git a/src/components/index.ts b/src/components/index.ts
index 0b3d3c95..9e1d7ca4 100644
--- a/src/components/index.ts
+++ b/src/components/index.ts
@@ -3,6 +3,7 @@ import { MucButton } from "./Button";
import { MucCallout } from "./Callout";
import { MucCard, MucCardContainer } from "./Card";
import { MucComment, MucCommentText } from "./Comment/";
+import { MucDivider } from "./Divider";
import {
MucCheckbox,
MucCheckboxGroup,
@@ -35,5 +36,6 @@ export {
MucSelect,
MucErrorList,
MucIcon,
+ MucDivider,
MucLink,
};