We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ccab01 commit 02f5c2bCopy full SHA for 02f5c2b
dev/components/kbd.tsx
@@ -0,0 +1,17 @@
1
+import { FlowProps } from 'solid-js';
2
+
3
+export function Kbd(props: FlowProps<{ activated: boolean }>) {
4
+ return (
5
+ <div class="relative text-xs">
6
+ <div class="absolute inset-0 rounded-md bg-neutral-200 transition"></div>
7
+ <div
8
+ class="relative transform rounded-md border bg-neutral-50 px-2 py-1.5 transition-transform"
9
+ style={{
10
+ transform: props.activated ? 'translateY(0px)' : 'translateY(-5px)',
11
+ }}
12
+ >
13
+ {props.children}
14
+ </div>
15
16
+ );
17
+}
0 commit comments