summaryrefslogtreecommitdiff
path: root/components/kbd.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/kbd.tsx')
-rw-r--r--components/kbd.tsx54
1 files changed, 54 insertions, 0 deletions
diff --git a/components/kbd.tsx b/components/kbd.tsx
new file mode 100644
index 00000000..86af5c6f
--- /dev/null
+++ b/components/kbd.tsx
@@ -0,0 +1,54 @@
+import * as React from "react"
+import { cva, type VariantProps } from "class-variance-authority"
+
+import { cn } from "@/lib/utils"
+
+const kbdVariants = cva(
+ "select-none rounded border px-1.5 py-px font-mono text-[0.7rem] font-normal shadow-sm disabled:opacity-50",
+ {
+ variants: {
+ variant: {
+ default: "bg-accent text-accent-foreground",
+ outline: "bg-background text-foreground",
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ },
+ }
+)
+
+export interface KbdProps
+ extends React.ComponentPropsWithoutRef<"kbd">,
+ VariantProps<typeof kbdVariants> {
+ /**
+ * The title of the `abbr` element inside the `kbd` element.
+ * @default undefined
+ * @type string | undefined
+ * @example title="Command"
+ */
+ abbrTitle?: string
+}
+
+const Kbd = React.forwardRef<HTMLUnknownElement, KbdProps>(
+ ({ abbrTitle, children, className, variant, ...props }, ref) => {
+ return (
+ <kbd
+ className={cn(kbdVariants({ variant, className }))}
+ ref={ref}
+ {...props}
+ >
+ {abbrTitle ? (
+ <abbr title={abbrTitle} className="no-underline">
+ {children}
+ </abbr>
+ ) : (
+ children
+ )}
+ </kbd>
+ )
+ }
+)
+Kbd.displayName = "Kbd"
+
+export { Kbd }