mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 23:55:02 +00:00
22 lines
536 B
TypeScript
22 lines
536 B
TypeScript
import { Badge } from "@/styles/base-nova/ui/badge"
|
|
import { Field, FieldLabel } from "@/styles/base-nova/ui/field"
|
|
import { Input } from "@/styles/base-nova/ui/input"
|
|
|
|
export function InputBadge() {
|
|
return (
|
|
<Field>
|
|
<FieldLabel htmlFor="input-badge">
|
|
Webhook URL{" "}
|
|
<Badge variant="secondary" className="ml-auto">
|
|
Beta
|
|
</Badge>
|
|
</FieldLabel>
|
|
<Input
|
|
id="input-badge"
|
|
type="url"
|
|
placeholder="https://api.example.com/webhook"
|
|
/>
|
|
</Field>
|
|
)
|
|
}
|