Skip to content

Commit

Permalink
fix(BaseSnack): fix typo in BaseSnack component
Browse files Browse the repository at this point in the history
  • Loading branch information
driss-chelouati committed Dec 18, 2023
1 parent 297cd2a commit 97055e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/base/BaseSnack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ const emit = defineEmits<{
delete: []
}>()
const size = useNuiDefaultProperty(props, 'BaseSncak', 'size')
const color = useNuiDefaultProperty(props, 'BaseSncak', 'color')
const size = useNuiDefaultProperty(props, 'BaseSnack', 'size')
const color = useNuiDefaultProperty(props, 'BaseSnack', 'color')
const sizes = {
xs: 'nui-snack-sm',
xs: 'nui-snack-xs',
sm: 'nui-snack-sm',
md: 'nui-snack-md',
} as Record<string, string>
Expand Down

0 comments on commit 97055e8

Please sign in to comment.