review suggestions

Signed-off-by: Reyna Nikolayev <reyna.nikolayev@autodesk.com>
This commit is contained in:
Reyna Nikolayev
2025-04-21 09:28:36 -07:00
parent b9b3b3520d
commit 61f2aac5e4
7 changed files with 17 additions and 13 deletions
@@ -33,6 +33,8 @@ export type QuickStartCardProps = {
docsLinkTitle?: string | JSX.Element;
/** The link to docs */
docsLink?: string;
/** The video to play on the card */
video?: JSX.Element;
/** Additional card content */
additionalContent?: JSX.Element;
/** A quickstart image to display on the card */
@@ -78,6 +80,7 @@ export const Content = (props: QuickStartCardProps): JSX.Element => {
</Link>
</Grid>
</Grid>
{props.video && props.video}
{props.additionalContent && props.additionalContent}
</>
);