Skip to content

Commit

Permalink
Formatting changes
Browse files Browse the repository at this point in the history
Package updates
  • Loading branch information
amitavroy committed Jan 4, 2025
1 parent b825ba0 commit 8d60310
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 27 deletions.
23 changes: 11 additions & 12 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 20 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions resources/js/Components/StatsCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@ import Icon from './Icon.vue'
const { title } = defineProps({
title: {
type: String,
required: true
required: true,
},
stats: {
type: Number,
required: true
required: true,
},
number: {
type: String,
required: true
required: true,
},
message: {
type: String,
required: true
required: true,
},
icon: {
type: String,
default: null
}
default: null,
},
})
</script>

Expand All @@ -36,7 +36,7 @@ const { title } = defineProps({
</h3>
<span
class="text-2xl font-bold leading-none text-gray-900 sm:text-3xl dark:text-white"
>{{ stats }}</span
>{{ stats }}</span
>
<p
class="flex items-center text-base font-normal text-gray-500 dark:text-gray-400"
Expand Down

0 comments on commit 8d60310

Please sign in to comment.