Prototypr

Prototyping, UX Design, Front-end Development and Beyond 👾 | ✍️ Write for us https://bit.ly/apply-prototypr

Follow publication

How to implement command palette with Kbar and Tailwind CSS

Kazuhiro Oz Hashimoto
Prototypr
Published in
3 min readAug 1, 2022

Cmd+K
Command Palettes — TailwindUI

Difference between kbar & command palette in Tailwind UI

Kbar on my portfolio

Getting started

Open `kbar` by button

const { query } = useKBar();
<button onClick={query.toggle}>Toggle</button>
Unhandled Runtime Error
TypeError: undefined is not an object (evaluating ‘query.toggle’)
return (
<ThemeProvider>
<KBarProvider actions={actions}>
<CommandBar />
<Component {...pageProps} />
</KBarProvider>
</ThemeProvider>
);

Place Icons

import {
HomeIcon,
CollectionIcon,
UserCircleIcon,
FolderIcon,
NewspaperIcon
} from '@heroicons/react/solid';
const actions = [
{
id: 'home',
name: 'Home',
shortcut: ['h'],
keywords: 'home index',
section: 'Go to',
perform: () => (window.location.pathname = '/'),
icon: <HomeIcon className="w-6 h-6" />
},
];

Demo

kbar-tailwind demo

Actions to add in the future

Published in Prototypr

Prototyping, UX Design, Front-end Development and Beyond 👾 | ✍️ Write for us https://bit.ly/apply-prototypr

No responses yet

Write a response