mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-05 10:36:06 -06:00
* format code * fix building issue in database package * update turbo config and package jsons * update error package with more information and license * fix typescript issues in ui package * update package-lock * update packages * clean dependencies in web * clean up dependencies in demo & formbricks-com * remove unsused template file * remove legacy capture endpoint * remove unfinished client endpoints * clean up unused functions * fix formbricks not loading on invalid session * update readme
463 lines
13 KiB
TypeScript
463 lines
13 KiB
TypeScript
export const TiredFace: React.FC<React.SVGProps<SVGCircleElement>> = (props) => {
|
|
return (
|
|
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
|
<g id="line">
|
|
<circle
|
|
cx="36"
|
|
cy="36"
|
|
r="23"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
{...props}
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="m21.88 23.92c5.102-0.06134 7.273-1.882 8.383-3.346"
|
|
/>
|
|
<path
|
|
stroke="currentColor"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="m46.24 47.56c0-2.592-2.867-7.121-10.25-6.93-6.974 0.1812-10.22 4.518-10.22 7.111s4.271-1.611 10.05-1.492c6.317 0.13 10.43 3.903 10.43 1.311z"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="m23.16 28.47c5.215 1.438 5.603 0.9096 8.204 1.207 1.068 0.1221-2.03 2.67-7.282 4.397"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="m50.12 23.92c-5.102-0.06134-7.273-1.882-8.383-3.346"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="m48.84 28.47c-5.215 1.438-5.603 0.9096-8.204 1.207-1.068 0.1221 2.03 2.67 7.282 4.397"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export const WearyFace: React.FC<React.SVGProps<SVGCircleElement>> = (props) => {
|
|
return (
|
|
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
|
<g id="line">
|
|
<circle
|
|
cx="36"
|
|
cy="36"
|
|
r="23"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
{...props}
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="m22.88 23.92c5.102-0.06134 7.273-1.882 8.383-3.346"
|
|
/>
|
|
<path
|
|
stroke="currentColor"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="m46.24 47.56c0-2.592-2.867-7.121-10.25-6.93-6.974 0.1812-10.22 4.518-10.22 7.111s4.271-1.611 10.05-1.492c6.317 0.13 10.43 3.903 10.43 1.311z"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="m49.12 23.92c-5.102-0.06134-7.273-1.882-8.383-3.346"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="m48.24 30.51c-6.199 1.47-7.079 1.059-8.868-1.961"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="m23.76 30.51c6.199 1.47 7.079 1.059 8.868-1.961"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export const PerseveringFace: React.FC<React.SVGProps<SVGCircleElement>> = (props) => {
|
|
return (
|
|
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
|
<g id="line">
|
|
<circle
|
|
cx="36"
|
|
cy="36"
|
|
r="23"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
{...props}
|
|
/>
|
|
<line
|
|
x1="44.5361"
|
|
x2="50.9214"
|
|
y1="21.4389"
|
|
y2="24.7158"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
/>
|
|
<line
|
|
x1="26.9214"
|
|
x2="20.5361"
|
|
y1="21.4389"
|
|
y2="24.7158"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="M24,28c2.3334,1.3333,4.6666,2.6667,7,4c-2.3334,1.3333-4.6666,2.6667-7,4"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="M48,28c-2.3334,1.3333-4.6666,2.6667-7,4c2.3334,1.3333,4.6666,2.6667,7,4"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="M28,51c0.2704-0.3562,1-8,8.4211-8.0038C43,42.9929,43.6499,50.5372,44,51C38.6667,51,33.3333,51,28,51z"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export const FrowningFace: React.FC<React.SVGProps<SVGCircleElement>> = (props) => {
|
|
return (
|
|
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
|
<g id="line">
|
|
<circle
|
|
cx="36"
|
|
cy="36"
|
|
r="23"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
{...props}
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="M26.5,48c1.8768-3.8326,5.8239-6.1965,10-6c3.8343,0.1804,7.2926,2.4926,9,6"
|
|
/>
|
|
<path d="M30,31c0,1.6568-1.3448,3-3,3c-1.6553,0-3-1.3433-3-3c0-1.6552,1.3447-3,3-3C28.6552,28,30,29.3448,30,31" />
|
|
<path d="M48,31c0,1.6568-1.3447,3-3,3s-3-1.3433-3-3c0-1.6552,1.3447-3,3-3S48,29.3448,48,31" />
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export const ConfusedFace: React.FC<React.SVGProps<SVGCircleElement>> = (props) => {
|
|
return (
|
|
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
|
<g id="line">
|
|
<circle
|
|
cx="36"
|
|
cy="36"
|
|
r="23"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
{...props}
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="m44.7 43.92c-6.328-1.736-11.41-0.906-17.4 1.902"
|
|
/>
|
|
<path d="M30,31c0,1.6568-1.3448,3-3,3c-1.6553,0-3-1.3433-3-3c0-1.6552,1.3447-3,3-3C28.6552,28,30,29.3448,30,31" />
|
|
<path d="M48,31c0,1.6568-1.3447,3-3,3s-3-1.3433-3-3c0-1.6552,1.3447-3,3-3S48,29.3448,48,31" />
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export const NeutralFace: React.FC<React.SVGProps<SVGCircleElement>> = (props) => {
|
|
return (
|
|
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
|
<g id="line">
|
|
<circle
|
|
cx="36"
|
|
cy="36"
|
|
r="23"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
{...props}
|
|
/>
|
|
<line
|
|
x1="27"
|
|
x2="45"
|
|
y1="43"
|
|
y2="43"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
/>
|
|
<path d="M30,31c0,1.6568-1.3448,3-3,3c-1.6553,0-3-1.3433-3-3c0-1.6552,1.3447-3,3-3C28.6552,28,30,29.3448,30,31" />
|
|
<path d="M48,31c0,1.6568-1.3447,3-3,3s-3-1.3433-3-3c0-1.6552,1.3447-3,3-3S48,29.3448,48,31" />
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export const SlightlySmilingFace: React.FC<React.SVGProps<SVGCircleElement>> = (props) => {
|
|
return (
|
|
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
|
<g id="line">
|
|
<circle
|
|
cx="36"
|
|
cy="36"
|
|
r="23"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
{...props}
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="M45.8149,44.9293 c-2.8995,1.6362-6.2482,2.5699-9.8149,2.5699s-6.9153-0.9336-9.8149-2.5699"
|
|
/>
|
|
<path d="M30,31c0,1.6568-1.3448,3-3,3c-1.6553,0-3-1.3433-3-3c0-1.6552,1.3447-3,3-3C28.6552,28,30,29.3448,30,31" />
|
|
<path d="M48,31c0,1.6568-1.3447,3-3,3s-3-1.3433-3-3c0-1.6552,1.3447-3,3-3S48,29.3448,48,31" />
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export const SmilingFaceWithSmilingEyes: React.FC<React.SVGProps<SVGCircleElement>> = (props) => {
|
|
return (
|
|
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
|
<g id="line">
|
|
<circle
|
|
cx="36"
|
|
cy="36"
|
|
r="23"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
{...props}
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="M45.8147,45.2268a15.4294,15.4294,0,0,1-19.6294,0"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="M31.6941,33.4036a4.7262,4.7262,0,0,0-8.6382,0"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="M48.9441,33.4036a4.7262,4.7262,0,0,0-8.6382,0"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export const GrinningFaceWithSmilingEyes: React.FC<React.SVGProps<SVGCircleElement>> = (props) => {
|
|
return (
|
|
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
|
<g id="line">
|
|
<circle
|
|
cx="36"
|
|
cy="36"
|
|
r="23"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
{...props}
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="M50.595,41.64a11.5554,11.5554,0,0,1-.87,4.49c-12.49,3.03-25.43.34-27.49-.13a11.4347,11.4347,0,0,1-.83-4.36h.11s14.8,3.59,28.89.07Z"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="M49.7251,46.13c-1.79,4.27-6.35,7.23-13.69,7.23-7.41,0-12.03-3.03-13.8-7.36C24.2951,46.47,37.235,49.16,49.7251,46.13Z"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="M31.6941,32.4036a4.7262,4.7262,0,0,0-8.6382,0"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeMiterlimit="10"
|
|
strokeWidth="2"
|
|
d="M48.9441,32.4036a4.7262,4.7262,0,0,0-8.6382,0"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export const GrinningSquintingFace: React.FC<React.SVGProps<SVGCircleElement>> = (props) => {
|
|
return (
|
|
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
|
<g id="line">
|
|
<circle
|
|
cx="36"
|
|
cy="36"
|
|
r="23"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
{...props}
|
|
/>
|
|
<polyline
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
points="25.168 27.413 31.755 31.427 25.168 35.165"
|
|
/>
|
|
<polyline
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
points="46.832 27.413 40.245 31.427 46.832 35.165"
|
|
/>
|
|
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="M50.595,41.64a11.5554,11.5554,0,0,1-.87,4.49c-12.49,3.03-25.43.34-27.49-.13a11.4347,11.4347,0,0,1-.83-4.36h.11s14.8,3.59,28.89.07Z"
|
|
/>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="M49.7251,46.13c-1.79,4.27-6.35,7.23-13.69,7.23-7.41,0-12.03-3.03-13.8-7.36C24.2951,46.47,37.235,49.16,49.7251,46.13Z"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|