mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-12 19:03:47 +00:00
8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
import { PropsWithChildren } from 'react';
|
|
|
|
import style from './Kbd.module.scss';
|
|
|
|
export default function Kbd({ children }: PropsWithChildren) {
|
|
return <kbd className={style.kbd}>{children}</kbd>;
|
|
}
|