Skip to content

Commit 7f1bf33

Browse files
committed
fix: wrap terms acceptance text in a span for better structure
Refs: #7627
1 parent 3da8123 commit 7f1bf33

File tree

1 file changed

+3
-1
lines changed
  • packages/samples/react/src/components/handout

1 file changed

+3
-1
lines changed

packages/samples/react/src/components/handout/basic.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,9 @@ export const HandoutBasic: FC = () => {
460460
<div className="grid gap-4">
461461
<KolInputRadio _orientation="horizontal" _options="[{'label':'Mr.','value':0},{'label':'Mrs.','value':1}]" _value="0" _label={`Salutation`} />
462462
<KolInputCheckbox _label="">
463-
I accept the <KolAbbr _label="General Terms and Conditions">AGB</KolAbbr>.
463+
<span slot="expert">
464+
I accept the <KolAbbr _label="General Terms and Conditions">AGB</KolAbbr>.
465+
</span>
464466
</KolInputCheckbox>
465467
</div>
466468
<KolTextarea _rows={4} _label={`Textarea`} />

0 commit comments

Comments
 (0)