mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-04 04:41:38 -05:00
b5928e71e5
* Update landingpage
12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
export const Headline: React.FC<{ headline: string; questionId: string }> = ({ headline, questionId }) => {
|
|
return (
|
|
<label
|
|
htmlFor={questionId}
|
|
className="mb-1.5 block text-base font-semibold leading-6 text-slate-900 dark:text-slate-100">
|
|
{headline}
|
|
</label>
|
|
);
|
|
};
|
|
|
|
export default Headline;
|