mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-23 05:17:49 -05:00
072a5947cf
* 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
258 B
TypeScript
8 lines
258 B
TypeScript
export default function Headline({ headline, questionId }: { headline: string; questionId: string }) {
|
|
return (
|
|
<label htmlFor={questionId} className="mb-1.5 block text-base font-semibold leading-6 text-slate-900">
|
|
{headline}
|
|
</label>
|
|
);
|
|
}
|