File tree Expand file tree Collapse file tree 4 files changed +33
-0
lines changed Expand file tree Collapse file tree 4 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ import MucDivider from "./MucDivider.vue" ;
2+
3+ export default {
4+ component : MucDivider ,
5+ title : "MucDivider" ,
6+ tags : [ "autodocs" ] ,
7+ parameters : {
8+ docs : {
9+ description : {
10+ component : `The \`muc-divider\` is a trivial divider.
11+
12+ [🔗 Patternlab-Docs](https://patternlab.muenchen.space/?p=viewall-components-all)
13+ ` ,
14+ } ,
15+ } ,
16+ } ,
17+ } ;
18+
19+ export const Default = { } ;
Original file line number Diff line number Diff line change 1+ <template >
2+ <hr class =" divider-border" />
3+ </template >
4+
5+ <style scoped>
6+ .divider-border {
7+ border-bottom : 1px solid var (--color-neutrals-blue );
8+ }
9+ </style >
Original file line number Diff line number Diff line change 1+ import MucDivider from "./MucDivider.vue" ;
2+
3+ export { MucDivider } ;
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { MucButton } from "./Button";
33import { MucCallout } from "./Callout" ;
44import { MucCard , MucCardContainer } from "./Card" ;
55import { MucComment , MucCommentText } from "./Comment/" ;
6+ import { MucDivider } from "./Divider" ;
67import {
78 MucCheckbox ,
89 MucCheckboxGroup ,
@@ -35,5 +36,6 @@ export {
3536 MucSelect ,
3637 MucErrorList ,
3738 MucIcon ,
39+ MucDivider ,
3840 MucLink ,
3941} ;
You can’t perform that action at this time.
0 commit comments