chore(storybook): add CSF3 default render example story

This commit is contained in:
Yann Braga 2022-01-18 22:47:02 +01:00
parent c81a1a0001
commit 42e1bea24f
2 changed files with 14 additions and 1 deletions

View File

@ -6,7 +6,9 @@
@click="onClick"
@dblclick="onDoubleClick"
>
<slot />!
<slot>
{{label}}!
</slot>
</button>
</template>
@ -23,6 +25,9 @@
color: {
type: String,
default: '#42b983'
},
label: {
type: String
}
},

View File

@ -27,3 +27,11 @@ Square.args = {
color: '#00f',
label: 'A Button with square edges',
};
export const WithDefaultRender = {
args: {
rounded: true,
color: '#fba',
label: 'Button with default render',
},
};