Components
Kbd
Documentation for the Kbd component.
Kbd
Preview
⌘K
The Kbd component is built with React Aria and styled using StyleX.
Import
import { Kbd } from '@moul-dev/ui';Usage
Here is a basic example of how to use the Kbd component:
import { Kbd } from '@moul-dev/ui';
export default function Example() {
return (
<Kbd>
{/* Component content */}
</Kbd>
);
}