Components
FormInputGroup
renders an input equipped with an **optional right-side addon** (text, currency, unit, or icon).
How is this guide?
<FormInputGroup
control={form.control}
name="price"
addon="USD"
inputGroupProps={{ type: "number" }}
/><FormInputGroup
control={form.control}
name="short_url"
addon={
<>
<GlobeIcon className="w-4 h-4 mr-2" /> ifx.li/
</>
}
/>