mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-25 13:46:07 +00:00
* feat: add base and radix docs * feat: transform code for display * fix * fix * fix * fix * fix * chore: remove claude files * fix * fix * fix * chore: run format:write * fix * feat: add more examples * fix * feat: add aspect-ratio * feat: add avatar * feat: add badge * feat: add breadcrumb * fix * feat: add button * fix * fix * fix * feat: add calendar and card * feat: add carousel * fix: chart * feat: add checkbox * feat: add collapsible * feat: add combobox * feat: add command * feat: add context menu * feat: add data-table dialog and drawer * feat: dropdown-menu * feat: add date-picker * feat: add empty * feat: add field and hover-card * fix: input * feat: add input * feat: add input-group * feat: add input-otp * feat: add item * feat: add kbd and label * feat: add menubar * feat: add native-select * feat: add more components * feat: more components * feat: more components * feat: add skeleton, slider and sonner * feat: add spinner and switch * feat: add more components * fix: tabs * fix: tabs * feat: add docs for sidebar * fix * fix * fi * docs: update * fix: create page * fix * fix * chore: add changelog * fix
85 lines
2.5 KiB
TypeScript
85 lines
2.5 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import {
|
|
InputGroup,
|
|
InputGroupAddon,
|
|
InputGroupButton,
|
|
InputGroupInput,
|
|
} from "@/examples/base/ui/input-group"
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
} from "@/examples/base/ui/popover"
|
|
import {
|
|
IconCheck,
|
|
IconCopy,
|
|
IconInfoCircle,
|
|
IconStar,
|
|
} from "@tabler/icons-react"
|
|
|
|
import { useCopyToClipboard } from "@/hooks/use-copy-to-clipboard"
|
|
|
|
export default function InputGroupButtonExample() {
|
|
const { copyToClipboard, isCopied } = useCopyToClipboard()
|
|
const [isFavorite, setIsFavorite] = React.useState(false)
|
|
|
|
return (
|
|
<div className="grid w-full max-w-sm gap-6">
|
|
<InputGroup>
|
|
<InputGroupInput placeholder="https://x.com/shadcn" readOnly />
|
|
<InputGroupAddon align="inline-end">
|
|
<InputGroupButton
|
|
aria-label="Copy"
|
|
title="Copy"
|
|
size="icon-xs"
|
|
onClick={() => {
|
|
copyToClipboard("https://x.com/shadcn")
|
|
}}
|
|
>
|
|
{isCopied ? <IconCheck /> : <IconCopy />}
|
|
</InputGroupButton>
|
|
</InputGroupAddon>
|
|
</InputGroup>
|
|
<InputGroup className="[--radius:9999px]">
|
|
<Popover>
|
|
<PopoverTrigger render={<InputGroupAddon />}>
|
|
<InputGroupButton variant="secondary" size="icon-xs">
|
|
<IconInfoCircle />
|
|
</InputGroupButton>
|
|
</PopoverTrigger>
|
|
<PopoverContent
|
|
align="start"
|
|
className="flex flex-col gap-1 rounded-xl text-sm"
|
|
>
|
|
<p className="font-medium">Your connection is not secure.</p>
|
|
<p>You should not enter any sensitive information on this site.</p>
|
|
</PopoverContent>
|
|
</Popover>
|
|
<InputGroupAddon className="text-muted-foreground pl-1.5">
|
|
https://
|
|
</InputGroupAddon>
|
|
<InputGroupInput id="input-secure-19" />
|
|
<InputGroupAddon align="inline-end">
|
|
<InputGroupButton
|
|
onClick={() => setIsFavorite(!isFavorite)}
|
|
size="icon-xs"
|
|
>
|
|
<IconStar
|
|
data-favorite={isFavorite}
|
|
className="data-[favorite=true]:fill-blue-600 data-[favorite=true]:stroke-blue-600"
|
|
/>
|
|
</InputGroupButton>
|
|
</InputGroupAddon>
|
|
</InputGroup>
|
|
<InputGroup>
|
|
<InputGroupInput placeholder="Type to search..." />
|
|
<InputGroupAddon align="inline-end">
|
|
<InputGroupButton variant="secondary">Search</InputGroupButton>
|
|
</InputGroupAddon>
|
|
</InputGroup>
|
|
</div>
|
|
)
|
|
}
|