mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-08 02:43:06 -05:00
Integration survey (#194)
* add integrations tab with surveys * add new horizontal navbar --------- Co-authored-by: knugget <johannes@knugget.de>
This commit is contained in:
@@ -148,6 +148,7 @@ export function EnginePage({
|
||||
{element.name ? (
|
||||
<ElementComponent
|
||||
element={element}
|
||||
page={page}
|
||||
control={control}
|
||||
register={register}
|
||||
onSubmit={() => handleSubmitElement()}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
@@ -37,3 +37,4 @@ export * from "./icons/VeryDisappointedIcon";
|
||||
export * from "./icons/SomewhatDisappointedIcon";
|
||||
export * from "./icons/NotDisappointedIcon";
|
||||
export * from "./icons/ArchiveIcon";
|
||||
export * from "./icons/DashboardIcon";
|
||||
|
||||
Reference in New Issue
Block a user