Skip to content

Commit 51891dd

Browse files
committed
Add vue3 todo for heading size prop type
1 parent 1568e47 commit 51891dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/src/components/Common/Heading.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ interface Props {
1717
bold?: boolean;
1818
separator?: boolean;
1919
inline?: boolean;
20-
size?: "xl" | "lg" | "md" | "sm" | "text";
20+
// TODO: Redo in Vue 3 to use BootstrapSize for prop typing.
21+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "text";
2122
icon?: IconLike;
2223
truncate?: boolean;
2324
collapse?: "open" | "closed" | "none";

0 commit comments

Comments
 (0)