refactor: standardize quote styles to single quotes across all files

This commit is contained in:
2026-05-04 20:39:10 -03:00
committed by hueso
parent af897e7dd4
commit 9c948d7da4
69 changed files with 1839 additions and 1828 deletions

View File

@@ -3,13 +3,13 @@ interface Props {
title: string;
value: string;
change?: string;
changeType?: "positive" | "negative" | "neutral";
changeType?: 'positive' | 'negative' | 'neutral';
icon?: string;
loading?: boolean;
}
const props = withDefaults(defineProps<Props>(), {
changeType: "neutral",
changeType: 'neutral',
loading: false,
});
</script>