refactor(shortcuts): improve readability of info element

This commit is contained in:
Carlos Valente
2026-07-14 11:45:05 +02:00
committed by Carlos Valente
parent 7e7d35980a
commit e7e4302100
4 changed files with 206 additions and 240 deletions
@@ -0,0 +1,7 @@
import { PropsWithChildren } from 'react';
import style from './Kbd.module.scss';
export default function Kbd({ children }: PropsWithChildren) {
return <kbd className={style.kbd}>{children}</kbd>;
}