mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 16:14:13 +00:00
* feat: add phosphor icons to base ui * feat_ add phosphor to blocks * feat: add phosphor to radix blocks * feat: add phosphor to radix ui * feat: add phosphor to radix example * feat: add missing phosphor icons * fix: rename broken icons * chore: format files * fix: add missing phosphor icons * chore: build registry --------- Co-authored-by: shadcn <m@shadcn.com>
187 lines
4.0 KiB
TypeScript
187 lines
4.0 KiB
TypeScript
import {
|
|
Example,
|
|
ExampleWrapper,
|
|
} from "@/registry/bases/base/components/example"
|
|
import { Button } from "@/registry/bases/base/ui/button"
|
|
import {
|
|
InputGroup,
|
|
InputGroupAddon,
|
|
InputGroupInput,
|
|
} from "@/registry/bases/base/ui/input-group"
|
|
import { Kbd, KbdGroup } from "@/registry/bases/base/ui/kbd"
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipTrigger,
|
|
} from "@/registry/bases/base/ui/tooltip"
|
|
import { IconPlaceholder } from "@/app/(create)/components/icon-placeholder"
|
|
|
|
export default function KbdExample() {
|
|
return (
|
|
<ExampleWrapper>
|
|
<KbdBasic />
|
|
<KbdModifierKeys />
|
|
<KbdGroupExample />
|
|
<KbdArrowKeys />
|
|
<KbdWithIcons />
|
|
<KbdWithIconsAndText />
|
|
<KbdInInputGroup />
|
|
<KbdInTooltip />
|
|
<KbdWithSamp />
|
|
</ExampleWrapper>
|
|
)
|
|
}
|
|
|
|
function KbdBasic() {
|
|
return (
|
|
<Example title="Basic">
|
|
<div className="flex items-center gap-2">
|
|
<Kbd>Ctrl</Kbd>
|
|
<Kbd>⌘K</Kbd>
|
|
<Kbd>Ctrl + B</Kbd>
|
|
</div>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function KbdModifierKeys() {
|
|
return (
|
|
<Example title="Modifier Keys">
|
|
<div className="flex items-center gap-2">
|
|
<Kbd>⌘</Kbd>
|
|
<Kbd>C</Kbd>
|
|
</div>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function KbdGroupExample() {
|
|
return (
|
|
<Example title="KbdGroup">
|
|
<KbdGroup>
|
|
<Kbd>Ctrl</Kbd>
|
|
<Kbd>Shift</Kbd>
|
|
<Kbd>P</Kbd>
|
|
</KbdGroup>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function KbdArrowKeys() {
|
|
return (
|
|
<Example title="Arrow Keys">
|
|
<div className="flex items-center gap-2">
|
|
<Kbd>↑</Kbd>
|
|
<Kbd>↓</Kbd>
|
|
<Kbd>←</Kbd>
|
|
<Kbd>→</Kbd>
|
|
</div>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function KbdWithIcons() {
|
|
return (
|
|
<Example title="With Icons">
|
|
<KbdGroup>
|
|
<Kbd>
|
|
<IconPlaceholder
|
|
lucide="CircleDashedIcon"
|
|
tabler="IconCircleDashed"
|
|
hugeicons="DashedLineCircleIcon"
|
|
phosphor="CircleDashedIcon"
|
|
/>
|
|
</Kbd>
|
|
<Kbd>
|
|
<IconPlaceholder
|
|
lucide="ArrowLeftIcon"
|
|
tabler="IconArrowLeft"
|
|
hugeicons="ArrowLeft01Icon"
|
|
phosphor="ArrowLeftIcon"
|
|
/>
|
|
</Kbd>
|
|
<Kbd>
|
|
<IconPlaceholder
|
|
lucide="ArrowRightIcon"
|
|
tabler="IconArrowRight"
|
|
hugeicons="ArrowRight01Icon"
|
|
phosphor="ArrowRightIcon"
|
|
/>
|
|
</Kbd>
|
|
</KbdGroup>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function KbdWithIconsAndText() {
|
|
return (
|
|
<Example title="With Icons and Text">
|
|
<KbdGroup>
|
|
<Kbd>
|
|
<IconPlaceholder
|
|
lucide="ArrowLeftIcon"
|
|
tabler="IconArrowLeft"
|
|
hugeicons="ArrowLeft01Icon"
|
|
phosphor="ArrowLeftIcon"
|
|
/>
|
|
Left
|
|
</Kbd>
|
|
<Kbd>
|
|
<IconPlaceholder
|
|
lucide="CircleDashedIcon"
|
|
tabler="IconCircleDashed"
|
|
hugeicons="DashedLineCircleIcon"
|
|
phosphor="CircleDashedIcon"
|
|
/>
|
|
Voice Enabled
|
|
</Kbd>
|
|
</KbdGroup>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function KbdInInputGroup() {
|
|
return (
|
|
<Example title="InputGroup">
|
|
<InputGroup>
|
|
<InputGroupInput />
|
|
<InputGroupAddon>
|
|
<Kbd>Space</Kbd>
|
|
</InputGroupAddon>
|
|
</InputGroup>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function KbdInTooltip() {
|
|
return (
|
|
<Example title="Tooltip">
|
|
<Tooltip>
|
|
<TooltipTrigger render={<Button size="icon-sm" variant="outline" />}>
|
|
<IconPlaceholder
|
|
lucide="SaveIcon"
|
|
tabler="IconDeviceFloppy"
|
|
hugeicons="FloppyDiskIcon"
|
|
phosphor="FloppyDiskIcon"
|
|
/>
|
|
</TooltipTrigger>
|
|
<TooltipContent className="pr-1.5">
|
|
<div className="flex items-center gap-2">
|
|
Save Changes <Kbd>S</Kbd>
|
|
</div>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function KbdWithSamp() {
|
|
return (
|
|
<Example title="With samp">
|
|
<Kbd>
|
|
<samp>File</samp>
|
|
</Kbd>
|
|
</Example>
|
|
)
|
|
}
|