Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 1a038db

Browse files
authored
feat(plg): Update Cody Pro badge deck (#63352)
1 parent 5ee5e88 commit 1a038db

File tree

5 files changed

+763
-11
lines changed

5 files changed

+763
-11
lines changed

client/web/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ ts_project(
214214
"src/cody/components/CodyLogo.tsx",
215215
"src/cody/components/CodyMarketingPage/CodyMarketingPage.tsx",
216216
"src/cody/components/CodyMarketingPage/index.ts",
217+
"src/cody/components/CodyProBadgeDeck.tsx",
217218
"src/cody/components/FileContentEditor.ts",
218219
"src/cody/components/GettingStarted.tsx",
219220
"src/cody/components/HistoryList/HistoryList.tsx",

client/web/src/cody/components/CodyLogo.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ import React, { type SVGProps } from 'react'
33
interface CodyLogoProps extends SVGProps<SVGSVGElement> {
44
withColor?: boolean
55
}
6-
76
export const CodyLogo: React.FunctionComponent<React.PropsWithChildren<CodyLogoProps>> = ({
87
withColor,
98
...props
109
}: CodyLogoProps) => (
10+
/* eslint-disable no-restricted-syntax */
1111
<svg width="24" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
12+
{/* eslint-enable no-restricted-syntax */}
1213
<path
1314
d="M13.9088 4C14.756 4 15.4429 4.69836 15.4429 5.55983V8.33286C15.4429 9.19433 14.756 9.89269 13.9088 9.89269C13.0615 9.89269 12.3747 9.19433 12.3747 8.33286V5.55983C12.3747 4.69836 13.0615 4 13.9088 4Z"
1415
fill={withColor ? '#FF5543' : '#a6b6d9'}

0 commit comments

Comments
 (0)