--- title: Kbd description: "`Kbd` is a component that represents keyboard input." links: - style: https://github.com/yamada-ui/yamada-ui/tree/main/packages/react/src/components/kbd/kbd.style.ts - source: https://github.com/yamada-ui/yamada-ui/tree/main/packages/react/src/components/kbd - storybook: https://yamada-ui.github.io/yamada-ui?path=/story/components-kbd--basic --- # Kbd `Kbd` is a component that represents keyboard input. ```tsx Shift + Tab ``` ## Usage ```tsx import { Kbd } from "@yamada-ui/react" ``` ```tsx import { Kbd } from "@/components/ui" ``` ```tsx import { Kbd } from "@workspaces/ui" ``` ```tsx ``` ### Change Variant ```tsx {(variant, index) => ( Shift + Tab )} ``` ### Change Size ```tsx {(size, index) => ( Shift + Tab )} ``` ### Change Color Scheme ```tsx {(colorScheme, index) => ( Shift +{" "} Tab )} ``` ## Props | Prop | Default | Type | Description | | ------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------ | | `as` | - | `As` | The HTML element to render. | | `asChild` | - | `boolean` | Merges its props onto its immediate child. | | `css` | - | `CSSObject \| CSSObject[]` | The CSS object. | | `colorScheme` | - | `"amber" \| "black" \| "blackAlpha" \| "blue" \| "cyan" \| "danger" \| "emerald" \| "error" \| "flashy" \| "fuchsia" ...` | Set color scheme variables. | | `size` | `"md"` | `"lg" \| "md" \| "sm"` | The size of the component. | | `variant` | `"surface"` | `"outline" \| "solid" \| "subtle" \| "surface"` | The variant of the component. | ## Similar Components - [Blockquote](https://yamada-ui.com/docs/components/blockquote.md): `Blockquote` is a component that represents a quotation. By default, it renders a `blockquote` element. - [Code](https://yamada-ui.com/docs/components/code.md): `Code` is a component that represents a code block. By default, it renders a `code` element. - [Em](https://yamada-ui.com/docs/components/em.md): `Em` is a component that represents emphasized text. By default, it renders a `em` element. - [Heading](https://yamada-ui.com/docs/components/heading.md): `Heading` is a component that represents section headings. By default, it renders an `h1` element. - [Highlight](https://yamada-ui.com/docs/components/highlight.md): `Highlight` is a component that highlights specified strings within text. By default, it renders a `p` element. - [Mark](https://yamada-ui.com/docs/components/mark.md): `Mark` is a component that emphasizes a specific part of the text. - [Text](https://yamada-ui.com/docs/components/text.md): `Text` is a component that represents a paragraph of text. By default, it renders a `p` element. - [Link](https://yamada-ui.com/docs/components/link.md): `Link` is a component for creating hyperlinks to different web pages, locations within the same page, or other URLs.