Integration survey (#194)

* add integrations tab with surveys

* add new horizontal navbar

---------

Co-authored-by: knugget <johannes@knugget.de>
This commit is contained in:
Matti Nannt
2023-02-08 13:55:02 +01:00
committed by GitHub
parent 29db5394f7
commit edacd3507a
24 changed files with 519 additions and 162 deletions
@@ -148,6 +148,7 @@ export function EnginePage({
{element.name ? (
<ElementComponent
element={element}
page={page}
control={control}
register={register}
onSubmit={() => handleSubmitElement()}
+77
View File
@@ -0,0 +1,77 @@
export function DashboardIcon(props: any) {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<defs />
<rect x={0.5} y={16.5} width={10} height={7} rx={1} fill="#00e6ca" />
<path d="M5.5,16.5h-4a1,1,0,0,0-1,1v5a1,1,0,0,0,1,1h4Z" fill="#c4f0eb" />
<rect
x={13.5}
y={10.5}
width={10}
height={13}
rx={1}
transform="translate(37 34) rotate(180)"
fill="#00e6ca"
/>
<path d="M18.5,10.5h-4a1,1,0,0,0-1,1v11a1,1,0,0,0,1,1h4Z" fill="#c4f0eb" />
<rect
x={13.5}
y={0.5}
width={10}
height={7}
rx={1}
transform="translate(37 8) rotate(180)"
fill="#00e6ca"
/>
<path d="M18.5.5h-4a1,1,0,0,0-1,1v5a1,1,0,0,0,1,1h4Z" fill="#c4f0eb" />
<rect x={0.5} y={0.5} width={10} height={13} rx={1} fill="#00e6ca" />
<path d="M5.5.5h-4a1,1,0,0,0-1,1v11a1,1,0,0,0,1,1h4Z" fill="#c4f0eb" />
<rect
x={0.5}
y={16.5}
width={10}
height={7}
rx={1}
fill="none"
stroke="#0f172a"
strokeLinecap="round"
strokeLinejoin="round"
/>
<rect
x={13.5}
y={10.5}
width={10}
height={13}
rx={1}
transform="translate(37 34) rotate(180)"
fill="none"
stroke="#0f172a"
strokeLinecap="round"
strokeLinejoin="round"
/>
<rect
x={13.5}
y={0.5}
width={10}
height={7}
rx={1}
transform="translate(37 8) rotate(180)"
fill="none"
stroke="#0f172a"
strokeLinecap="round"
strokeLinejoin="round"
/>
<rect
x={0.5}
y={0.5}
width={10}
height={13}
rx={1}
fill="none"
stroke="#0f172a"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
+1
View File
@@ -37,3 +37,4 @@ export * from "./icons/VeryDisappointedIcon";
export * from "./icons/SomewhatDisappointedIcon";
export * from "./icons/NotDisappointedIcon";
export * from "./icons/ArchiveIcon";
export * from "./icons/DashboardIcon";