diff --git a/src/components/querypie-logo.tsx b/src/components/querypie-logo.tsx index 42b3e198..b38aaf24 100644 --- a/src/components/querypie-logo.tsx +++ b/src/components/querypie-logo.tsx @@ -1,5 +1,24 @@ import React from 'react'; +/** + * QueryPie 2019 Logo SVG Component + */ +export function QueryPie2019({ width = 284, height = 60, ...props }: React.SVGProps & { width?: number; height?: number }) { + return ( + + + + + + + + + + + + ); +} + /** * QueryPieLogo HTML structure as string * Used for DOM manipulation scenarios (e.g., Redoc logo replacement) @@ -26,13 +45,9 @@ export const QUERYPIE_LOGO_HTML = ` */ export function QueryPieLogo() { return ( -
-
- QueryPie Logo -
- QueryPie ACP -
-
+
+ + ACP
); }