Files
formbricks/apps/web/components/preview/Subheader.tsx
Johannes 072a5947cf UI tweaks (#216)
* preview hint, warnings, survey status indicator

* add event in survey builder, add surveystatusdropdown

* update wording, add survey status toasts, update LP

---------

Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2023-04-05 11:28:46 +02:00

8 lines
252 B
TypeScript

export default function Subheader({ subheader, questionId }: { subheader?: string; questionId: string }) {
return (
<label htmlFor={questionId} className="block text-sm font-normal leading-6 text-slate-500">
{subheader}
</label>
);
}