We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bb46c5 commit 8abce6dCopy full SHA for 8abce6d
1 file changed
apps/website/screens/components/footer/code/FooterCodePage.tsx
@@ -9,6 +9,11 @@ const bottomLinksTypeString = `{
9
text: string;
10
}[]`;
11
12
+const logoTypeString = `{
13
+ src: string;
14
+ alt: string;
15
+}`;
16
+
17
const socialLinkTypeString = `{
18
href: string;
19
title: string;
@@ -69,6 +74,21 @@ const sections = [
69
74
<td>Content to be displayed on the left side of the footer under the logo.</td>
70
75
<td>-</td>
71
76
</tr>
77
+ <tr>
78
+ <td>
79
+ <DxcFlex direction="column" gap="var(--spacing-gap-xs)" alignItems="baseline">
80
+ <StatusBadge status="new" />
81
+ logo
82
+ </DxcFlex>
83
+ </td>
84
85
86
+ <ExtendedTableCode>{logoTypeString}</ExtendedTableCode>
87
88
89
+ <td>Logo to be displayed inside the footer.</td>
90
+ <td>-</td>
91
+ </tr>
72
92
<tr>
73
93
<td>mode</td>
94
<td>
0 commit comments