` rather than a ``: per the HTML spec a `kbd` nested
+ * inside a `kbd` represents an individual key within a larger input, which is
+ * exactly a shortcut sequence.
+ */
+const KbdGroup = ({ className, ...props }: KbdGroupProps) => (
+
+);
+
+KbdGroup.displayName = 'Kbd.Group';
+
+export const Kbd = Object.assign(KbdRoot, {
+ Group: KbdGroup
+});
diff --git a/packages/raystack/index.tsx b/packages/raystack/index.tsx
index 562cbdb2d..c48d4e57e 100644
--- a/packages/raystack/index.tsx
+++ b/packages/raystack/index.tsx
@@ -97,6 +97,7 @@ export { IconButton } from './components/icon-button';
export { Image } from './components/image';
export { Indicator } from './components/indicator';
export { Input } from './components/input';
+export { Kbd } from './components/kbd';
export { Label } from './components/label';
export { Link } from './components/link';
export { List } from './components/list';