mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-30 10:49:55 -06:00
* 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>
8 lines
252 B
TypeScript
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>
|
|
);
|
|
}
|