Skip to content

Commit

Permalink
fix: update document action story
Browse files Browse the repository at this point in the history
  • Loading branch information
caro3801 committed Jul 22, 2024
1 parent 6283fa3 commit a26f67c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 51 deletions.
51 changes: 0 additions & 51 deletions src/stories/components/DocumentActions.stories.js

This file was deleted.

32 changes: 32 additions & 0 deletions src/stories/components/DocumentActionsButton.stories.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import DocumentActionsButton from '@/components/DocumentActionButton'

export default {
components: { DocumentActionsButton },
title: 'Components/DocumentActions/Button',
component: DocumentActionsButton,
tags: ['autodocs']
}

export const Default = {
args: {
iconName: 'star',
label: 'Star',
tooltipPlacement: 'top',
tooltipLabel: 'Test',
btnClass: 'btn-link btn-sm',
filledBtnClass: 'starred',
isFilled: false
}
}
export const Filled = {
args: {
iconName: 'star',
label: 'Star',
tooltipLabel: 'Test',
tooltipPlacement: 'top',
btnClass: 'btn-link btn-sm',
filledBtnClass: 'starred',
isFilled: true
}
}

0 comments on commit a26f67c

Please sign in to comment.