Skip to content

Commit

Permalink
docs(vue): make icons optional on input
Browse files Browse the repository at this point in the history
  • Loading branch information
felipefialho committed Jun 14, 2024
1 parent f724796 commit bda5c6b
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Meta, StoryObj } from '@storybook/vue3'

import { AtomSelect } from '@juntossomosmais/atomium/vue'
import { Meta, StoryObj } from '@storybook/vue3'

import { SelectComponentArgs, SelectStoryArgs } from './select.args'

Expand All @@ -25,7 +24,7 @@ const createSelect = (args) => ({
label="${args.label}"
helperText="${args.helperText}"
errorText="${args.errorText}"
icon="${args.icon}"
${args.icon ? `icon="${args.icon}"` : ''}
mode="${args.mode}"
value="${args.value}"
:options="[
Expand Down

0 comments on commit bda5c6b

Please sign in to comment.