Skip to content

Commit ee2c180

Browse files
authored
docs: update feature table (#6880)
1 parent 3779184 commit ee2c180

File tree

3 files changed

+274
-75
lines changed

3 files changed

+274
-75
lines changed

packages/web/docs/src/components/icons.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,20 @@ export function XIcon(props: React.SVGProps<SVGSVGElement>) {
1515
</svg>
1616
);
1717
}
18+
19+
export function GatewayIcon(props: React.SVGProps<SVGSVGElement>) {
20+
return (
21+
<svg
22+
stroke="currentColor"
23+
fill="currentColor"
24+
strokeWidth="0"
25+
viewBox="0 0 256 256"
26+
height="24"
27+
width="24"
28+
xmlns="http://www.w3.org/2000/svg"
29+
{...props}
30+
>
31+
<path d="M176,160a39.89,39.89,0,0,0-28.62,12.09l-46.1-29.63a39.8,39.8,0,0,0,0-28.92l46.1-29.63a40,40,0,1,0-8.66-13.45l-46.1,29.63a40,40,0,1,0,0,55.82l46.1,29.63A40,40,0,1,0,176,160Zm0-128a24,24,0,1,1-24,24A24,24,0,0,1,176,32ZM64,152a24,24,0,1,1,24-24A24,24,0,0,1,64,152Zm112,72a24,24,0,1,1,24-24A24,24,0,0,1,176,224Z" />
32+
</svg>
33+
);
34+
}

packages/web/docs/src/components/landing-page-feature-tabs.tsx

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { ActiveHighlightImage, FeatureTab, FeatureTabs, Highlight } from './feature-tabs';
2+
import { GatewayIcon } from './icons';
23
import auditImage from '../../public/features/gateway/audit.png';
34
import observabilityClientsImage from '../../public/features/observability/clients.webp';
45
import observabilityOperationsImage from '../../public/features/observability/operations.webp';
@@ -137,19 +138,3 @@ function GraphQLObservabilityIcon() {
137138
</svg>
138139
);
139140
}
140-
141-
function GatewayIcon() {
142-
return (
143-
<svg
144-
stroke="currentColor"
145-
fill="currentColor"
146-
strokeWidth="0"
147-
viewBox="0 0 256 256"
148-
height="24"
149-
width="24"
150-
xmlns="http://www.w3.org/2000/svg"
151-
>
152-
<path d="M176,160a39.89,39.89,0,0,0-28.62,12.09l-46.1-29.63a39.8,39.8,0,0,0,0-28.92l46.1-29.63a40,40,0,1,0-8.66-13.45l-46.1,29.63a40,40,0,1,0,0,55.82l46.1,29.63A40,40,0,1,0,176,160Zm0-128a24,24,0,1,1-24,24A24,24,0,0,1,176,32ZM64,152a24,24,0,1,1,24-24A24,24,0,0,1,64,152Zm112,72a24,24,0,1,1,24-24A24,24,0,0,1,176,224Z" />
153-
</svg>
154-
);
155-
}

0 commit comments

Comments
 (0)